/* Copyright (c) 2016 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/layer_norm_op.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using DDim = framework::DDim; template class LayerNormXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { const auto begin_norm_axis = ctx.Attr("begin_norm_axis"); const auto epsilon = ctx.Attr("epsilon"); const auto* x = ctx.Input("X"); const auto& x_dims = x->dims(); auto matrix_dim = framework::flatten_to_2d(x_dims, begin_norm_axis); int left = static_cast(matrix_dim[0]); int right = static_cast(matrix_dim[1]); const auto* scale = ctx.Input("Scale"); const auto* bias = ctx.Input("Bias"); auto* y = ctx.Output("Y"); auto* mean = ctx.Output("Mean"); auto* variance = ctx.Output("Variance"); const auto* x_data = x->data(); const auto* scale_data = (scale == nullptr ? nullptr : scale->data()); const auto* bias_data = (bias == nullptr ? nullptr : bias->data()); auto* y_data = y->mutable_data(ctx.GetPlace()); auto* mean_data = mean->mutable_data(ctx.GetPlace()); auto* variance_data = variance->mutable_data(ctx.GetPlace()); auto& dev_ctx = ctx.template device_context(); int r = xpu::layer_norm(dev_ctx.x_context(), left, right, x_data, y_data, scale_data, bias_data, epsilon, mean_data, variance_data, false); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(layer_norm) return wrong " "value[%d], please check whether Baidu " "Kunlun Card is properly installed.", r)); } }; template class LayerNormGradXPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { const auto begin_norm_axis = ctx.Attr("begin_norm_axis"); const auto epsilon = ctx.Attr("epsilon"); const auto* x = ctx.Input("X"); const auto& x_dims = x->dims(); auto matrix_dim = framework::flatten_to_2d(x_dims, begin_norm_axis); int left = static_cast(matrix_dim[0]); int right = static_cast(matrix_dim[1]); const auto* mean = ctx.Input("Mean"); const auto* variance = ctx.Input("Variance"); const auto* scale = ctx.Input("Scale"); const auto* dy = ctx.Input(framework::GradVarName("Y")); auto* dx = ctx.Output(framework::GradVarName("X")); auto* dscale = ctx.Output(framework::GradVarName("Scale")); auto* dbias = ctx.Output(framework::GradVarName("Bias")); const auto* x_data = x->data(); const auto* dy_data = dy->data(); const auto* mean_data = mean->data(); const auto* variance_data = variance->data(); const auto* scale_data = (scale == nullptr ? nullptr : scale->data()); auto* dscale_data = (dscale == nullptr ? nullptr : dscale->mutable_data(ctx.GetPlace())); auto* dbias_data = (dbias == nullptr ? nullptr : dbias->mutable_data(ctx.GetPlace())); auto* dx_data = (dx == nullptr ? nullptr : dx->mutable_data(ctx.GetPlace())); auto& dev_ctx = ctx.template device_context(); int r = xpu::layer_norm_backward( dev_ctx.x_context(), left, right, x_data, scale_data, variance_data, mean_data, dy_data, dx_data, dscale_data, dbias_data, epsilon); PADDLE_ENFORCE_EQ( r, XPU_SUCCESS, platform::errors::External("XPU API(layer_norm_backward) 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( layer_norm, ops::LayerNormXPUKernel); REGISTER_OP_XPU_KERNEL( layer_norm_grad, ops::LayerNormGradXPUKernel); #endif // PADDLE_WITH_XPU