/* 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 #include "paddle/fluid/framework/op_registry.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template class LogLossXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { /*** TODO wait XDNN new interface auto* predict = ctx.Input("Predicted"); auto* labels = ctx.Input("Labels"); auto* loss = ctx.Output("Loss"); auto epsilon = static_cast(ctx.Attr("epsilon")); loss->mutable_data(ctx.GetPlace()); int n = predict->numel(); auto& dev_ctx = ctx.template device_context(); int r = xpu::log_loss_fwd(dev_ctx.x_context(), n, epsilon, predict->data(), labels->data(), loss->data()); PADDLE_ENFORCE_EQ( r, xpu::Error_t::SUCCESS, platform::errors::External( "XPU log_loss kernel return wrong value[%d], please check whether " "Baidu Kunlun Card is properly installed.", r)); ***/ } }; template class LogLossGradXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { /*** TODO wait XDNN new interface auto* predict = ctx.Input("Predicted"); auto* labels = ctx.Input("Labels"); auto* dloss = ctx.Input(framework::GradVarName("Loss")); auto* dpred = ctx.Output(framework::GradVarName("Predicted")); if (!dpred) { return; } auto epsilon = static_cast(ctx.Attr("epsilon")); dpred->mutable_data(ctx.GetPlace()); int n = predict->numel(); auto& dev_ctx = ctx.template device_context(); int r = xpu::log_loss_bwd(dev_ctx.x_context(), n, epsilon, predict->data(), labels->data(), dloss->data(), dpred->data()); PADDLE_ENFORCE_EQ( r, xpu::Error_t::SUCCESS, platform::errors::External( "XPU log_loss kernel return wrong value[%d], please check whether " "Baidu Kunlun Card is properly installed.", r)); ***/ } }; } // namespace operators } // namespace paddle // namespace ops = paddle::operators; // REGISTER_OP_XPU_KERNEL( // log_loss, ops::LogLossXPUKernel); // REGISTER_OP_XPU_KERNEL( // log_loss_grad, // ops::LogLossGradXPUKernel); #endif