* Copyright (c) 2025-2026 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 lin_space_need_cast.h
* \brief
*/
#ifndef LINSPACE_CAST_H
#define LINSPACE_CAST_H
#include "lin_space_base.h"
namespace LinSpace {
using namespace AscendC;
template <typename T1, typename T2>
class LinSpaceNeedCast : public LinSpaceBase<T2> {
public:
__aicore__ inline LinSpaceNeedCast(){};
__aicore__ inline void Init(
GM_ADDR start, GM_ADDR stop, GM_ADDR num, GM_ADDR output, GM_ADDR workspace,
const LinSpaceTilingData* tilingData);
__aicore__ inline void Process();
private:
__aicore__ inline void CopyIn();
__aicore__ inline void CopyInReverse();
__aicore__ inline void Compute(const int64_t& processNum, const int64_t& loopNum, const int64_t& loopTail);
__aicore__ inline void ComputeReverse(const int64_t& processNum, const int64_t& loopNum, const int64_t& loopTail);
__aicore__ inline void CopyOut(const int64_t& outLen);
__aicore__ inline void CopyOutReverse(const int64_t& outLen);
__aicore__ inline void ProcessPerCore();
__aicore__ inline void ProcessLastCore();
__aicore__ inline void ProcessPerCoreReverse();
constexpr static int32_t matrixSize = 256;
constexpr static int32_t outSize = 16 * 1024;
constexpr static int32_t bufferNum = 2;
constexpr static int64_t POWER_BASE_NUM = 2;
constexpr static int32_t outNum = outSize / sizeof(T2);
constexpr static int64_t reverseScalar = -1.0;
constexpr static int64_t blockSize = 32;
constexpr static int64_t elementPerBlock = blockSize / sizeof(T1);
private:
TPipe pipe;
TQue<QuePosition::VECIN, 1> inQueueMatrix;
TQue<QuePosition::VECOUT, bufferNum> outQueue;
TBuf<QuePosition::VECCALC> castBuf;
GlobalTensor<T1> outputGm;
GlobalTensor<T2> gmAssist;
GlobalTensor<T2> gmAssistReverse;
int32_t blockIdx = 0;
T2 blockOffset = 0;
int64_t gmOutOffset = 0;
LinSpaceTilingData m_tilingData;
RoundMode retR = RoundMode::CAST_TRUNC;
};
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::Init(
GM_ADDR start, GM_ADDR stop, GM_ADDR num, GM_ADDR output, GM_ADDR workspace, const LinSpaceTilingData* tilingData)
{
blockIdx = GetBlockIdx();
outputGm.SetGlobalBuffer((__gm__ T1*)output);
gmAssist.SetGlobalBuffer((__gm__ T2*)this->assistGm, matrixSize);
gmAssistReverse.SetGlobalBuffer((__gm__ T2*)this->assistGmReverse, matrixSize);
this->ParseTilingData(tilingData, m_tilingData);
pipe.InitBuffer(inQueueMatrix, 1, matrixSize * sizeof(T2));
pipe.InitBuffer(outQueue, bufferNum, outNum * sizeof(T1));
pipe.InitBuffer(castBuf, outNum * sizeof(T2));
gmOutOffset = blockIdx * m_tilingData.numPerCore;
if (sizeof(T1) == sizeof(int16_t) && sizeof(T2) == sizeof(float)) {
retR = RoundMode::CAST_ROUND;
}
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::Process()
{
if (m_tilingData.num == 0 || blockIdx >= m_tilingData.realCoreNum) {
return;
}
#if defined(ASCENDC_OOM) && ASCENDC_OOM == 1
OOMCheckAddrRange(gmAssist.GetPhyAddr(), 2 * matrixSize * sizeof(T2));
#endif
if (blockIdx < m_tilingData.realCoreNum / POWER_BASE_NUM) {
blockOffset = m_tilingData.scalar * blockIdx * m_tilingData.numPerCore + m_tilingData.start;
ProcessPerCore();
} else if (blockIdx == m_tilingData.realCoreNum - 1) {
blockOffset = m_tilingData.stop;
ProcessLastCore();
} else {
blockOffset =
m_tilingData.stop - m_tilingData.scalar * (m_tilingData.num - (blockIdx + 1) * m_tilingData.numPerCore);
ProcessPerCoreReverse();
}
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::ProcessPerCore()
{
CopyIn();
Compute(m_tilingData.numPerCore, m_tilingData.innerLoopNum, m_tilingData.innerLoopTail);
CopyOut(m_tilingData.numPerCore);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::ProcessLastCore()
{
int64_t tailAlignNum = this->CeilDiv(m_tilingData.tailNum, elementPerBlock) * elementPerBlock;
gmOutOffset = m_tilingData.num - tailAlignNum;
CopyInReverse();
ComputeReverse(
tailAlignNum, m_tilingData.innerTailLoopNum,
this->CeilDiv(m_tilingData.innerTailLoopTail, elementPerBlock) * elementPerBlock);
CopyOutReverse(tailAlignNum);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::ProcessPerCoreReverse()
{
CopyInReverse();
ComputeReverse(m_tilingData.numPerCore, m_tilingData.innerLoopNum, m_tilingData.innerLoopTail);
CopyOutReverse(m_tilingData.numPerCore);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::CopyIn()
{
LocalTensor<T2> ubAssist = inQueueMatrix.AllocTensor<T2>();
DataCopy(ubAssist, gmAssist, m_tilingData.matrixLen);
inQueueMatrix.EnQue(ubAssist);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::CopyInReverse()
{
LocalTensor<T2> ubAssist = inQueueMatrix.AllocTensor<T2>();
DataCopy(ubAssist, gmAssistReverse, matrixSize);
inQueueMatrix.EnQue(ubAssist);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::Compute(
const int64_t& processNum, const int64_t& loopNum, const int64_t& loopTail)
{
LocalTensor<T2> ubAssist = inQueueMatrix.DeQue<T2>();
LocalTensor<T1> outLocal = outQueue.AllocTensor<T1>();
LocalTensor<T2> ubNeedCast = castBuf.Get<T2>();
Muls(ubNeedCast, ubAssist, T2(m_tilingData.scalar), m_tilingData.matrixLen);
Adds(ubNeedCast, ubNeedCast, blockOffset, m_tilingData.matrixLen);
for (int64_t idx = 1; idx <= loopNum; idx *= 2) {
Adds(ubNeedCast[idx * matrixSize], ubNeedCast, T2(m_tilingData.scalar * matrixSize * idx), matrixSize * idx);
}
if (loopTail > 0) {
Adds(
ubNeedCast[processNum - loopTail], ubNeedCast, T2(m_tilingData.scalar * (processNum - loopTail)), loopTail);
}
Cast(outLocal, ubNeedCast, retR, processNum);
outQueue.EnQue(outLocal);
inQueueMatrix.FreeTensor(ubAssist);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::ComputeReverse(
const int64_t& processNum, const int64_t& loopNum, const int64_t& loopTail)
{
LocalTensor<T2> ubAssist = inQueueMatrix.DeQue<T2>();
LocalTensor<T1> outLocal = outQueue.AllocTensor<T1>();
LocalTensor<T2> ubNeedCast = castBuf.Get<T2>();
Muls(ubNeedCast[outNum - matrixSize], ubAssist, T2(m_tilingData.scalar), matrixSize);
Adds(ubNeedCast[outNum - matrixSize], ubNeedCast[outNum - matrixSize], blockOffset, matrixSize);
for (int64_t idx = 1; idx <= loopNum; idx *= POWER_BASE_NUM) {
Adds(
ubNeedCast[outNum - idx * matrixSize * POWER_BASE_NUM], ubNeedCast[outNum - idx * matrixSize],
T2(m_tilingData.scalar * matrixSize * idx * reverseScalar), matrixSize * idx);
}
if (loopTail > 0) {
Adds(
ubNeedCast[outNum - processNum], ubNeedCast[outNum - loopTail],
T2(m_tilingData.scalar * (processNum - loopTail) * reverseScalar), loopTail);
}
Cast(outLocal[outNum - processNum], ubNeedCast[outNum - processNum], retR, processNum);
outQueue.EnQue(outLocal);
inQueueMatrix.FreeTensor(ubAssist);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::CopyOut(const int64_t& outLen)
{
LocalTensor<T1> outLocal = outQueue.DeQue<T1>();
DataCopy(outputGm[gmOutOffset], outLocal, outLen);
outQueue.FreeTensor(outLocal);
}
template <typename T1, typename T2>
__aicore__ inline void LinSpaceNeedCast<T1, T2>::CopyOutReverse(const int64_t& outLen)
{
LocalTensor<T1> outLocal = outQueue.DeQue<T1>();
DataCopy(outputGm[gmOutOffset], outLocal[outNum - outLen], outLen);
outQueue.FreeTensor(outLocal);
}
}
#endif