/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifdef PADDLE_WITH_XPU #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/framework/op_version_registry.h" namespace paddle { namespace operators { template void XPUCompare( const framework::ExecutionContext& ctx, std::function&, const std::vector&)> func) { auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* z = ctx.Output("Out"); auto x_shape = phi::vectorize(x->dims()); auto y_shape = phi::vectorize(y->dims()); auto x_data = reinterpret_cast(x->data()); auto y_data = reinterpret_cast(y->data()); auto z_data = z->mutable_data(ctx.GetPlace()); auto& dev_ctx = ctx.template device_context(); int ret = func(dev_ctx.x_context(), x_data, y_data, z_data, x_shape, y_shape); PADDLE_ENFORCE_EQ( ret, xpu::SUCCESS, platform::errors::External( "XPU kernel compare op occur error[%d %s] in XPUCompare.", ret, XPUAPIErrorMsg[ret])); } template class EqualXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_equal); } }; template class NotEqualXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_not_equal); } }; template class LessThanXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_less_than); } }; template class LessEqualXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_less_equal); } }; template class GreaterThanXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_greater_than); } }; template class GreaterEqualXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& ctx) const override { XPUCompare(ctx, xpu::broadcast_greater_equal); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; namespace plat = paddle::platform; REGISTER_OP_XPU_KERNEL(equal, ops::EqualXPUKernel, ops::EqualXPUKernel, ops::EqualXPUKernel); REGISTER_OP_XPU_KERNEL(not_equal, ops::NotEqualXPUKernel, ops::NotEqualXPUKernel, ops::NotEqualXPUKernel); REGISTER_OP_XPU_KERNEL(less_than, ops::LessThanXPUKernel, ops::LessThanXPUKernel, ops::LessThanXPUKernel); REGISTER_OP_XPU_KERNEL( less_equal, ops::LessEqualXPUKernel, ops::LessEqualXPUKernel, ops::LessEqualXPUKernel); REGISTER_OP_XPU_KERNEL( greater_than, ops::GreaterThanXPUKernel, ops::GreaterThanXPUKernel, ops::GreaterThanXPUKernel); REGISTER_OP_XPU_KERNEL( greater_equal, ops::GreaterEqualXPUKernel, ops::GreaterEqualXPUKernel, ops::GreaterEqualXPUKernel); #endif