/* Copyright (c) 2020 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/operators/softmax_op.h" #include "paddle/fluid/framework/op_registry.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using DDim = framework::DDim; template class SoftmaxXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto* x = context.Input("X"); auto* out = context.Output("Out"); const int rank = x->dims().size(); int axis = CanonicalAxis(context.Attr("axis"), rank); // allocate memory on device. out->mutable_data(context.GetPlace()); std::vector x_dims; for (int i = 0; i < rank; i++) { x_dims.push_back(x->dims()[i]); } if (axis < 0) { axis += rank; } auto& dev_ctx = context.template device_context(); int r = XPU_SUCCESS; Tensor clip_x; int len = x->numel(); T* clip_x_data = clip_x.mutable_data(context.GetPlace(), len * sizeof(T)); r = xpu::clip(dev_ctx.x_context(), x->data(), clip_x_data, len, -1e30, 1e30); PADDLE_ENFORCE_EQ(r, XPU_SUCCESS, platform::errors::External("XPU API(clip) return wrong " "value[%d %s]", r, XPUAPIErrorMsg[r])); r = xpu::softmax(dev_ctx.x_context(), clip_x_data, out->data(), x_dims, axis); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(softmax2d_forward) return wrong " "value[%d %s]", r, XPUAPIErrorMsg[r])); } }; template class SoftmaxGradXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto* out = context.Input("Out"); auto* dout = context.Input(framework::GradVarName("Out")); auto* dx = context.Output(framework::GradVarName("X")); const int rank = dx->dims().size(); int axis = CanonicalAxis(context.Attr("axis"), rank); // allocate memory on device. dx->mutable_data(context.GetPlace()); std::vector x_dims; for (int i = 0; i < rank; i++) { x_dims.push_back(dx->dims()[i]); } if (axis < 0) { axis += rank; } auto& dev_ctx = context.template device_context(); int r = xpu::softmax_grad(dev_ctx.x_context(), out->data(), dout->data(), dx->data(), x_dims, axis); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(softmax2d_backward) return wrong " "value[%d %s]", r, XPUAPIErrorMsg[r])); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_XPU_KERNEL( softmax, ops::SoftmaxXPUKernel); REGISTER_OP_XPU_KERNEL( softmax_grad, ops::SoftmaxGradXPUKernel); #endif // PADDLE_WITH_XPU