/* 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" namespace paddle { namespace operators { using Tensor = framework::Tensor; template class HuberLossXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* in0 = ctx.Input("X"); auto* in1 = ctx.Input("Y"); auto* residual = ctx.Output("Residual"); auto* out = ctx.Output("Out"); auto delta = ctx.Attr("delta"); auto residual_data = residual->mutable_data(ctx.GetPlace()); auto out_data = out->mutable_data(ctx.GetPlace()); auto in0_data = in0->data(); auto in1_data = in1->data(); auto& dev_ctx = ctx.template device_context(); int r = xpu::huber_loss(dev_ctx.x_context(), in0_data, in1_data, residual_data, out_data, in0->numel(), 1, delta); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(huber_loss) return wrong " "value[%d %s]", r, XPUAPIErrorMsg[r])); } }; template class HuberLossGradXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* residual = ctx.Input("Residual"); auto* dout = ctx.Input(framework::GradVarName("Out")); auto* dx = ctx.Output(framework::GradVarName("X")); auto* dy = ctx.Output(framework::GradVarName("Y")); auto delta = ctx.Attr("delta"); T* dx_data = nullptr; T* dy_data = nullptr; if (dx) { dx_data = dx->mutable_data(ctx.GetPlace()); } if (dy) { dy_data = dy->mutable_data(ctx.GetPlace()); } auto dout_data = dout->data(); auto residual_data = residual->data(); auto& dev_ctx = ctx.template device_context(); int r = xpu::huber_loss_grad(dev_ctx.x_context(), residual_data, dout_data, dx_data, dy_data, dout->numel(), 1, delta); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(huber_loss_grad) return wrong " "value[%d %s]", r, XPUAPIErrorMsg[r])); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; namespace plat = paddle::platform; REGISTER_OP_XPU_KERNEL(huber_loss, ops::HuberLossXPUKernel); REGISTER_OP_XPU_KERNEL(huber_loss_grad, ops::HuberLossGradXPUKernel); #endif