/* Copyright (c) 2022 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" #include "paddle/fluid/platform/device/device_wrapper.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using DDim = framework::DDim; template class LayerNormXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; 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 = phi::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 layer_norm(Context* ctx, const T* x, T* y, int m, int n, float eps, // const float* scale, const float* bias, float* mean, float* var); int r = xpu::layer_norm(dev_ctx.x_context(), reinterpret_cast(x_data), reinterpret_cast(y_data), left, right, epsilon, scale_data, bias_data, mean_data, variance_data); PADDLE_ENFORCE_XDNN_SUCCESS(r, "layer_norm"); } }; template class LayerNormGradXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; 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 = phi::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 layer_norm_grad(Context* ctx, const T* x, const T* dy, T* dx, int m, // int n, float eps, const float* scale, const float* mean, const float* // var, float* dscale, float* dbias); int r = xpu::layer_norm_grad(dev_ctx.x_context(), reinterpret_cast(x_data), reinterpret_cast(dy_data), reinterpret_cast(dx_data), left, right, epsilon, scale_data, mean_data, variance_data, dscale_data, dbias_data); PADDLE_ENFORCE_XDNN_SUCCESS(r, "layer_norm_grad"); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_XPU_KERNEL( layer_norm, ops::LayerNormXPUKernel, ops::LayerNormXPUKernel); REGISTER_OP_XPU_KERNEL( layer_norm_grad, ops::LayerNormGradXPUKernel, ops::LayerNormGradXPUKernel); #endif // PADDLE_WITH_XPU