/* 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. */ #include "paddle/fluid/operators/mean_op.h" #ifdef PADDLE_WITH_XPU #include #include #include namespace paddle { namespace operators { template class MeanXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& context) const override { auto* input = context.Input("X"); auto* output = context.Output("Out"); output->mutable_data(context.GetPlace()); auto& dev_ctx = context.template device_context(); const T* x_data = input->data(); T* y_data = output->data(); std::vector x_shape; x_shape.push_back(1); x_shape.push_back(input->numel()); std::vector rdims = {1}; int r = xpu::reduce_mean( dev_ctx.x_context(), reinterpret_cast(x_data), reinterpret_cast(y_data), x_shape, rdims); PADDLE_ENFORCE_EQ(r, XPU_SUCCESS, platform::errors::External( "XPU reduce_mean kernel return wrong value[%d %s]", r, XPUAPIErrorMsg[r])); } }; template class MeanGradXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& context) const override { auto OG = context.Input(framework::GradVarName("Out")); PADDLE_ENFORCE_EQ(OG->numel(), 1, platform::errors::InvalidArgument( "Mean Gradient should be scalar")); auto IG = context.Output(framework::GradVarName("X")); IG->mutable_data(context.GetPlace()); auto& dev_ctx = context.template device_context(); XPUType* dx = reinterpret_cast(IG->data()); const T* dy = OG->data(); T dy0_value; xpu_wait(dev_ctx.x_context()->xpu_stream); memory::Copy(platform::CPUPlace(), &dy0_value, BOOST_GET_CONST(platform::XPUPlace, OG->place()), dy, sizeof(T)); float dy0_fp32 = static_cast(dy0_value); dy0_fp32 = dy0_fp32 / static_cast(IG->numel()); int r = xpu::constant(dev_ctx.x_context(), dx, IG->numel(), static_cast(dy0_fp32)); PADDLE_ENFORCE_EQ(r, XPU_SUCCESS, platform::errors::External( "XPU constant kernel return wrong value[%d %s]", r, XPUAPIErrorMsg[r])); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_XPU_KERNEL( mean, ops::MeanXPUKernel, ops::MeanXPUKernel); REGISTER_OP_XPU_KERNEL( mean_grad, ops::MeanGradXPUKernel, ops::MeanGradXPUKernel); #endif