* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.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 kernel_operator_fixpipe_intf_impl.h
* \brief
*/
#if !defined(__ASCENDC_INCLUDE_INTERNAL_HEADERS__)
#pragma message("impl/basic_api/kernel_operator_fixpipe_intf_impl.h is an internal header file and must not be used directly. Functions or variables defined in this file may be removed in the future. Please use \"#include \"basic_api/kernel_operator_fixpipe_intf.h\"\" and use public functions or variables defined in interface headers files.")
#define __ASCENDC_INCLUDE_INTERNAL_HEADERS__
#define __UNDEF_ASCENDC_INCLUDE_INTERNAL_HEADERS_KERNEL_OPERATOR_FIXPIPE_INTF_IMPL_H__
#endif
#ifndef ASCENDC_MODULE_OPERATOR_FIXPIPE_INTERFACE_IMPL_H
#define ASCENDC_MODULE_OPERATOR_FIXPIPE_INTERFACE_IMPL_H
#include "kernel_tensor.h"
#include "kernel_check.h"
#include "kernel_struct_fixpipe.h"
#include "kernel_operator_mm_check.h"
#include "kernel_process_lock.h"
#if __NPU_ARCH__ == 1001
#include "dav_c100/kernel_operator_fixpipe_impl.h"
#elif __NPU_ARCH__ == 2002
#include "dav_m200/kernel_operator_fixpipe_impl.h"
#elif __NPU_ARCH__ == 2201
#include "dav_c220/kernel_operator_fixpipe_impl.h"
#include "dav_c220/kernel_operator_fixpipe_v2_impl.h"
#elif __NPU_ARCH__ == 3002
#include "dav_m300/kernel_operator_fixpipe_impl.h"
#include "dav_m300/kernel_operator_fixpipe_v2_impl.h"
#elif __NPU_ARCH__ == 3102
#include "dav_m310/kernel_operator_fixpipe_impl.h"
#elif __NPU_ARCH__ == 3510
#include "dav_3510/kernel_operator_fixpipe_impl.h"
#elif (__NPU_ARCH__ == 5102)
#include "dav_m510/kernel_operator_fixpipe_impl.h"
#elif __NPU_ARCH__ == 3003
#include "dav_l300/kernel_operator_fixpipe_impl.h"
#elif __NPU_ARCH__ == 3113
#include "dav_l311/kernel_operator_fixpipe_impl.h"
#endif
namespace AscendC {
* Fixpipe *
* ************************************************************************************************* */
* @ingroup Fixpipe
* @brief After calculation, process the results
* @param [out] dst output GlobalTensor
* @param [in] src input LocalTensor
* @param [in] intriParams.cburstNum number of burst
* @param [in] intriParams.burstLen burst length
* @param [in] intriParams.srcStride src block stride
* @param [in] intriParams.dstStride dst block stride
* @param [in] intriParams.biasParams contains isBias flag and bias LocalTensor
* @param [in] intriParams.quantParams contains quant mode and quant params
* @param [in] intriParams.reluEn indicates whether to enable the relu function
* @param [in] intriParams.nz2ndParams contains the input params for enable the nz2nd function
*/
template <typename T>
__aicore__ inline void SetFixPipeConfig(const LocalTensor<T> &reluPre, const LocalTensor<T> &quantPre,
bool isUnitFlag)
{
SetFixPipeConfigImpl<T>(reluPre, quantPre, isUnitFlag);
}
template <typename T, bool setRelu>
__aicore__ inline void SetFixPipeConfig(const LocalTensor<T> &preData, bool isUnitFlag)
{
SetFixPipeConfigImpl<T, setRelu>(preData, isUnitFlag);
}
#if defined(__NPU_ARCH__) && ((__NPU_ARCH__ == 3510) || (__NPU_ARCH__ == 5102))
__aicore__ inline void SetFixpipeNz2ndFlag(uint16_t ndNum, uint16_t srcNdStride, uint32_t dstNdStride)
{
SetFixpipeNz2ndFlagImpl(ndNum, srcNdStride, dstNdStride);
}
#else
__aicore__ inline void SetFixpipeNz2ndFlag(uint16_t ndNum, uint16_t srcNdStride, uint16_t dstNdStride)
{
SetFixpipeNz2ndFlagImpl(ndNum, srcNdStride, dstNdStride);
}
#endif
__aicore__ inline void SetFixpipePreQuantFlag(uint64_t config)
{
SetFixpipePreQuantFlagImpl(config);
}
__aicore__ inline void SetFixPipeClipRelu(uint64_t config)
{
SetFixPipeClipReluImpl(config);
}
template <typename T>
__aicore__ inline void SetFixPipeAddr(const LocalTensor<T> &eleWiseData, uint16_t c0ChStride)
{
SetFixPipeAddrImpl(eleWiseData, c0ChStride);
}
template <typename T, typename U, const FixpipeConfig &config>
__aicore__ inline void Fixpipe(const LocalTensor<T> &dst, const LocalTensor<U> &src,
const FixpipeParamsV220 &intriParams)
{
#if defined(ASCENDC_DEBUG) || defined(ASCENDC_CPU_DEBUG)
CheckFixpipeTensor<T, U, config>(dst, src, intriParams, "Fixpipe");
#endif
if ((GetPhyType((TPosition)dst.GetPosition()) == Hardware::L1)) {
FixpipeL0C2L1Impl<PrimT<T>, PrimT<U>, config>((__cbuf__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(), intriParams);
} else if ((GetPhyType((TPosition)dst.GetPosition()) == Hardware::UB)) {
FixpipeL0C2UBImpl<PrimT<T>, PrimT<U>, config>((__ubuf__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(), intriParams);
}
}
template <typename T, typename U, const FixpipeConfig& config, typename S,
typename Std::enable_if<Std::is_same<PrimT<S>, uint64_t>::value, bool>::type>
__aicore__ inline void Fixpipe(const LocalTensor<T>& dst, const LocalTensor<U>& src,
const LocalTensor<S>& cbufWorkspace, const FixpipeParamsV220& intriParams)
{
#if defined(ASCENDC_DEBUG) || defined(ASCENDC_CPU_DEBUG)
CheckFixpipeTensor<T, U, config, S>(dst, src, cbufWorkspace, intriParams, "Fixpipe");
#endif
if ((GetPhyType((TPosition)dst.GetPosition()) == Hardware::L1)) {
FixpipeL0C2L1Impl<PrimT<T>, PrimT<U>, config>((__cbuf__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(), (__cbuf__ uint64_t*)cbufWorkspace.GetPhyAddr(), intriParams);
} else if ((GetPhyType((TPosition)dst.GetPosition()) == Hardware::UB)) {
FixpipeL0C2UBImpl<PrimT<T>, PrimT<U>, config>((__ubuf__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(), (__cbuf__ uint64_t*)cbufWorkspace.GetPhyAddr(), intriParams);
}
}
template <typename T, typename U, const FixpipeConfig &config>
__aicore__ inline void Fixpipe(const GlobalTensor<T> &dst, const LocalTensor<U> &src,
const FixpipeParamsV220 &intriParams)
{
#ifdef ASCENDC_CPU_DEBUG
bool isUsedProcessLock = false;
if (g_isAtomic == true) {
ProcessLock::GetProcessLock()->Write();
isUsedProcessLock = true;
}
#endif
#if defined(ASCENDC_DEBUG) || defined(ASCENDC_CPU_DEBUG)
CheckFixpipeTensor<T, U, config>(dst, src, intriParams, "Fixpipe");
#endif
FixpipeL0C2GMImpl<PrimT<T>, PrimT<U>, config>((__gm__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(),
intriParams);
#ifdef ASCENDC_CPU_DEBUG
if (isUsedProcessLock == true) {
isUsedProcessLock = false;
ProcessLock::GetProcessLock()->Unlock();
}
#endif
}
template <typename T, typename U, const FixpipeConfig &config, typename S,
typename Std::enable_if<Std::is_same<PrimT<S>, uint64_t>::value, bool>::type>
__aicore__ inline void Fixpipe(const GlobalTensor<T> &dst, const LocalTensor<U> &src,
const LocalTensor<S> &cbufWorkspace, const FixpipeParamsV220 &intriParams)
{
#if defined(ASCENDC_DEBUG) || defined(ASCENDC_CPU_DEBUG)
CheckFixpipeTensor<T, U, config, S>(dst, src, cbufWorkspace, intriParams, "Fixpipe");
#endif
FixpipeL0C2GMImpl<PrimT<T>, PrimT<U>, config>((__gm__ PrimT<T>*)dst.GetPhyAddr(),
(__cc__ PrimT<U>*)src.GetPhyAddr(),
(__cbuf__ uint64_t*)cbufWorkspace.GetPhyAddr(), intriParams);
}
#if defined(__NPU_ARCH__) && ((__NPU_ARCH__ == 3510) || (__NPU_ARCH__ == 5102))
template <typename T, typename U, const FixpipeConfig& config>
__aicore__ inline void Fixpipe(const LocalTensor<T>& dst, const LocalTensor<U>& src,
const FixpipeParamsArch3510<config.format>& intriParams)
{
using DstPrimType = PrimT<T>;
using SrcPrimType = PrimT<U>;
CheckTensorPos(src, Hardware::L0C, "src", "CO1", "Fixpipe");
ASCENDC_CHECK_TPOSITION((GetPhyType((TPosition)dst.GetPosition()) == Hardware::L1) ||
(GetPhyType((TPosition)dst.GetPosition()) == Hardware::UB), "dst", "A1", "Fixpipe",
ConstDefiner::Instance().logicNameMap.at(static_cast<uint8_t>(dst.GetPosition())));
if constexpr (config.isToUB) {
FixpipeL0C2UBImpl<DstPrimType, SrcPrimType, config>((__ubuf__ DstPrimType*)dst.GetPhyAddr(),
(__cc__ SrcPrimType*)src.GetPhyAddr(), intriParams);
} else {
FixpipeL0C2L1Impl<DstPrimType, SrcPrimType, config>((__cbuf__ DstPrimType*)dst.GetPhyAddr(),
(__cc__ SrcPrimType*)src.GetPhyAddr(), intriParams);
}
}
template <typename T, typename U, const FixpipeConfig& config>
__aicore__ inline void Fixpipe(const LocalTensor<T>& dst, const LocalTensor<U>& src,
const LocalTensor<uint64_t>& cbufWorkspace, const FixpipeParamsArch3510<config.format>& intriParams)
{
using DstPrimType = PrimT<T>;
using SrcPrimType = PrimT<U>;
CheckTensorPos(src, Hardware::L0C, "src", "CO1", "Fixpipe");
ASCENDC_CHECK_TPOSITION((GetPhyType((TPosition)dst.GetPosition()) == Hardware::L1) ||
(GetPhyType((TPosition)dst.GetPosition()) == Hardware::UB), "dst", "A1", "Fixpipe",
ConstDefiner::Instance().logicNameMap.at(static_cast<uint8_t>(dst.GetPosition())));
CheckTensorPos(cbufWorkspace, Hardware::L1, "cbufWorkspace", "A1", "Fixpipe");
if constexpr (config.isToUB) {
FixpipeL0C2UBImpl<DstPrimType, SrcPrimType, config>((__ubuf__ DstPrimType*)dst.GetPhyAddr(),
(__cc__ SrcPrimType*)src.GetPhyAddr(), (__cbuf__ uint64_t *)cbufWorkspace.GetPhyAddr(), intriParams);
} else {
FixpipeL0C2L1Impl<DstPrimType, SrcPrimType, config>((__cbuf__ DstPrimType*)dst.GetPhyAddr(),
(__cc__ SrcPrimType*)src.GetPhyAddr(), (__cbuf__ uint64_t *)cbufWorkspace.GetPhyAddr(), intriParams);
}
}
template <typename T, typename U, const FixpipeConfig& config>
__aicore__ inline void Fixpipe(const GlobalTensor<T>& dst, const LocalTensor<U>& src,
const FixpipeParamsArch3510<config.format>& intriParams)
{
using DstPrimType = PrimT<T>;
using SrcPrimType = PrimT<U>;
CheckTensorPos(src, Hardware::L0C, "src", "CO1", "Fixpipe");
#ifdef ASCENDC_CPU_DEBUG
bool isUsedProcessLock = false;
if (g_isAtomic == true) {
ProcessLock::GetProcessLock()->Write();
isUsedProcessLock = true;
}
#endif
#if defined(__NPU_ARCH__) && ((__NPU_ARCH__ == 3510) || (__NPU_ARCH__ == 5102))
const uint8_t cacheMode = ExtractCacheMode(dst);
FixpipeL0C2GMImpl<DstPrimType, SrcPrimType, config>((__gm__ DstPrimType *)dst.GetPhyAddr(),
(__cc__ SrcPrimType *)src.GetPhyAddr(), intriParams, cacheMode);
#else
FixpipeL0C2GMImpl<DstPrimType, SrcPrimType, config>((__gm__ DstPrimType*)dst.GetPhyAddr(),
(__cc__ SrcPrimType*)src.GetPhyAddr(), intriParams);
#endif
#ifdef ASCENDC_CPU_DEBUG
if (isUsedProcessLock == true) {
isUsedProcessLock = false;
ProcessLock::GetProcessLock()->Unlock();
}
#endif
}
template <typename T, typename U, const FixpipeConfig& config>
__aicore__ inline void Fixpipe(const GlobalTensor<T> &dst, const LocalTensor<U> &src,
const LocalTensor<uint64_t> &cbufWorkspace, const FixpipeParamsArch3510<config.format> &intriParams)
{
using DstPrimType = PrimT<T>;
using SrcPrimType = PrimT<U>;
CheckTensorPos(src, Hardware::L0C, "src", "CO1", "Fixpipe");
CheckTensorPos(cbufWorkspace, Hardware::L1, "cbufWorkspace", "A1", "Fixpipe");
#if defined(__NPU_ARCH__) && ((__NPU_ARCH__ == 3510) || (__NPU_ARCH__ == 5102))
const uint8_t cacheMode = ExtractCacheMode(dst);
FixpipeL0C2GMImpl<DstPrimType, SrcPrimType, config>((__gm__ DstPrimType *)dst.GetPhyAddr(),
(__cc__ SrcPrimType *)src.GetPhyAddr(), (__cbuf__ uint64_t *)cbufWorkspace.GetPhyAddr(), intriParams,
cacheMode);
#else
FixpipeL0C2GMImpl<DstPrimType, SrcPrimType, config>((__gm__ DstPrimType *)dst.GetPhyAddr(),
(__cc__ SrcPrimType *)src.GetPhyAddr(), (__cbuf__ uint64_t *)cbufWorkspace.GetPhyAddr(), intriParams);
#endif
}
#endif
}
#endif
#if defined(__UNDEF_ASCENDC_INCLUDE_INTERNAL_HEADERS_KERNEL_OPERATOR_FIXPIPE_INTF_IMPL_H__)
#undef __ASCENDC_INCLUDE_INTERNAL_HEADERS__
#undef __UNDEF_ASCENDC_INCLUDE_INTERNAL_HEADERS_KERNEL_OPERATOR_FIXPIPE_INTF_IMPL_H__
#endif