/** * Copyright (c) 2024 Huawei Technologies Co., Ltd. * This file is a part of the CANN Open Software. * Licensed under CANN Open Software License Agreement Version 1.0 (the "License"). * Please refer to the License for details. You may not use this file except in compliance with the License. * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. * See LICENSE in the root of the software repository for the full text of the License. */ /* ! * \file layernormgradbeta.h * \brief */ #ifndef LIB_LAYERNORMGRADBETA_H #define LIB_LAYERNORMGRADBETA_H #include "kernel_tensor.h" #include "../../impl/normalization/layernormgrad/layernormgradbeta_common_impl.h" #include "kernel_tiling/kernel_tiling.h" namespace AscendC { #pragma begin_pipe(V) /*! * \brief layernormgradbeta intf function: * reduce_axis = (0, 1) * pd_gamma = sum(inputDy*res_for_gamma, reduce_axis, keepdims=True) * pd_beta = sum(inputDy, reduce_axis, keepdims=True) * * \note support data type: half and float * * \param [out] outputPdGamma, output LocalTensor, shape is [H] * \param [out] outputPdBeta, output LocalTensor, shape is [H] * \param [in] resForGamma, input LocalTensor, shape is [B, S, H] * \param [in] inputDy, input LocalTensor, shape is [B, S, H] * \param [in] sharedTmpBuffer, input local temporary Tensor * \param [in] tiling, layernormgradbeta tiling */ template __aicore__ inline void LayerNormGradBeta(const LocalTensor &outputPdGamma, const LocalTensor &outputPdBeta, const LocalTensor &resForGamma, const LocalTensor &inputDy, const LocalTensor &sharedTmpBuffer, const LayerNormGradBetaTiling &tiling) { LayerNormGradBetaImpl(outputPdGamma, outputPdBeta, resForGamma, inputDy, sharedTmpBuffer, tiling); } /*! * \brief layernormgradbeta intf function * * \note support data type: half and float * * \param [out] outputPdGamma, output LocalTensor, shape is [H] * \param [out] outputPdBeta, output LocalTensor, shape is [H] * \param [in] resForGamma, input LocalTensor, shape is [B, S, H] * \param [in] inputDy, input LocalTensor, shape is [B, S, H] * \param [in] tiling, layernormgradbeta tiling */ template __aicore__ inline void LayerNormGradBeta(const LocalTensor &outputPdGamma, const LocalTensor &outputPdBeta, const LocalTensor &resForGamma, const LocalTensor &inputDy, LayerNormGradBetaTiling &tiling) { LayerNormGradBetaImpl(outputPdGamma, outputPdBeta, resForGamma, inputDy, tiling); } #pragma end_pipe } // namespace AscendC #endif // LIB_LAYERNORMGRADBETA_H