* 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 test_nsa_compress_with_cache.cpp
*/
#include "acl/acl.h"
#include "aclnnop/aclnn_nsa_compress_with_cache.h"
#include <iostream>
#include <vector>
#define CHECK_RET(cond, return_expr) \
do { \
if (!(cond)) { \
return_expr; \
} \
} while (0)
#define LOG_PRINT(message, ...) \
do { \
printf(message, ##__VA_ARGS__); \
} while (0)
int64_t GetShapeSize(const std::vector<int64_t>& shape) {
int64_t shape_size = 1;
for (auto i : shape) {
shape_size *= i;
}
return shape_size;
}
int Init(int32_t deviceId, aclrtStream* stream) {
auto ret = aclInit(nullptr);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclInit failed. ERROR: %d\n", ret); return ret);
ret = aclrtSetDevice(deviceId);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtSetDevice failed. ERROR: %d\n", ret); return ret);
ret = aclrtCreateStream(stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtCreateStream failed. ERROR: %d\n", ret); return ret);
return 0;
}
template <typename T>
int CreateAclTensor(const std::vector<T>& hostData, const std::vector<int64_t>& shape, void** deviceAddr,
aclDataType dataType, aclTensor** tensor) {
auto size = GetShapeSize(shape) * sizeof(T);
auto ret = aclrtMalloc(deviceAddr, size, ACL_MEM_MALLOC_HUGE_FIRST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtMalloc failed. ERROR: %d\n", ret); return ret);
ret = aclrtMemcpy(*deviceAddr, size, hostData.data(), size, ACL_MEMCPY_HOST_TO_DEVICE);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtMemcpy failed. ERROR: %d\n", ret); return ret);
std::vector<int64_t> strides(shape.size(), 1);
for (int64_t i = shape.size() - 2; i >= 0; i--) {
strides[i] = shape[i + 1] * strides[i + 1];
}
*tensor = aclCreateTensor(shape.data(), shape.size(), dataType, strides.data(), 0, aclFormat::ACL_FORMAT_ND,
shape.data(), shape.size(), *deviceAddr);
return 0;
}
int main() {
constexpr int64_t compress_block_size = 32;
constexpr int64_t compress_stride = 16;
constexpr int64_t heads_num = 24;
constexpr int64_t heads_dim = 192;
constexpr int64_t batch_size = 4;
constexpr int64_t page_block_size = 128;
constexpr int64_t max_seq_len = 512;
constexpr int64_t result_len = 512;
constexpr int64_t block_num_per_batch = max_seq_len / page_block_size;
constexpr int64_t blocks_num = block_num_per_batch * batch_size;
int32_t deviceId = 0;
aclrtStream stream;
auto ret = Init(deviceId, &stream);
CHECK_RET(ret == 0, LOG_PRINT("Init acl failed. ERROR: %d\n", ret); return ret);
std::vector<int64_t> inputShape = {blocks_num, page_block_size, heads_num, heads_dim};
std::vector<int64_t> weightShape = {compress_block_size, heads_num};
std::vector<int64_t> slotMappingShape = {batch_size};
std::vector<int64_t> outputCacheRefShape = {result_len, heads_num, heads_dim};
std::vector<int64_t> actSeqLenShape = {batch_size};
std::vector<int64_t> blockTableShape = {batch_size, block_num_per_batch};
void *inputDeviceAddr = nullptr;
void *weightDeviceAddr = nullptr;
void *slotMappingDeviceAddr = nullptr;
void *outputCacheRefDeviceAddr = nullptr;
void *actSeqLenDeviceAddr = nullptr;
void *blockTableDeviceAddr = nullptr;
aclTensor *input = nullptr;
aclTensor *weight = nullptr;
aclTensor *slotMapping = nullptr;
aclTensor *outputCacheRef = nullptr;
aclIntArray *actSeqLen = nullptr;
aclTensor *blockTable = nullptr;
std::vector<aclFloat16> inputHostData(inputShape[0] * inputShape[1] * inputShape[2] * inputShape[3],
aclFloatToFloat16(1.0));
std::vector<aclFloat16> weightHostData(weightShape[0] * weightShape[1], aclFloatToFloat16(1.0));
std::vector<int32_t> slotMappingHostData(slotMappingShape[0], 0);
std::vector<aclFloat16> outputCacheRefHostData(outputCacheRefShape[0] * outputCacheRefShape[1] *
outputCacheRefShape[2], aclFloatToFloat16(1.0));
std::vector<int64_t> actSeqLenHostData(actSeqLenShape[0], 0);
std::vector<int32_t> blockTableHostData(blockTableShape[0] * blockTableShape[1]);
actSeqLenHostData[0]=32;
ret = CreateAclTensor(inputHostData, inputShape, &inputDeviceAddr, aclDataType::ACL_FLOAT16, &input);
CHECK_RET(ret == ACL_SUCCESS, return ret);
ret = CreateAclTensor(weightHostData, weightShape, &weightDeviceAddr, aclDataType::ACL_FLOAT16, &weight);
CHECK_RET(ret == ACL_SUCCESS, return ret);
ret = CreateAclTensor(slotMappingHostData, slotMappingShape, &slotMappingDeviceAddr, aclDataType::ACL_INT32,
&slotMapping);
CHECK_RET(ret == ACL_SUCCESS, return ret);
ret = CreateAclTensor(outputCacheRefHostData, outputCacheRefShape, &outputCacheRefDeviceAddr,
aclDataType::ACL_FLOAT16, &outputCacheRef);
CHECK_RET(ret == ACL_SUCCESS, return ret);
actSeqLen = aclCreateIntArray(actSeqLenHostData.data(), actSeqLenHostData.size());
ret = CreateAclTensor(blockTableHostData, blockTableShape, &blockTableDeviceAddr, aclDataType::ACL_INT32,
&blockTable);
CHECK_RET(ret == ACL_SUCCESS, return ret);
char layout[4] = "TND";
int64_t actSeqLenType = 1;
uint64_t workspaceSize = 0;
aclOpExecutor* executor;
ret = aclnnNsaCompressWithCacheGetWorkspaceSize(input, weight, slotMapping, actSeqLen, blockTable, layout,
compress_block_size, compress_stride, actSeqLenType,
page_block_size, outputCacheRef, &workspaceSize, &executor);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclnnNsaCompressWithCacheGetWorkspaceSize failed. ERROR: %d\n", ret);
return ret);
void* workspaceAddr = nullptr;
if (workspaceSize > 0) {
ret = aclrtMalloc(&workspaceAddr, workspaceSize, ACL_MEM_MALLOC_HUGE_FIRST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("allocate workspace failed. ERROR: %d\n", ret); return ret;);
}
ret = aclnnNsaCompressWithCache(workspaceAddr, workspaceSize, executor, stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclnnNsaCompressWithCache failed. ERROR: %d\n", ret); return ret);
ret = aclrtSynchronizeStream(stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtSynchronizeStream failed. ERROR: %d\n", ret); return ret);
auto size = GetShapeSize(outputCacheRefShape);
std::vector<aclFloat16> resultData(size, 0);
ret = aclrtMemcpy(resultData.data(), resultData.size() * sizeof(aclFloat16), outputCacheRefDeviceAddr,
size * sizeof(aclFloat16), ACL_MEMCPY_DEVICE_TO_HOST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("copy result from device to host failed. ERROR: %d\n", ret); return ret);
for (int64_t i = heads_dim * heads_num - 16; i < heads_dim * heads_num + 16; i++) {
printf("outputCache[%ld]:%f\n", i, aclFloat16ToFloat(resultData[i]));
}
aclDestroyTensor(input);
aclDestroyTensor(weight);
aclDestroyTensor(slotMapping);
aclDestroyTensor(outputCacheRef);
aclDestroyIntArray(actSeqLen);
aclDestroyTensor(blockTable);
aclrtFree(inputDeviceAddr);
aclrtFree(weightDeviceAddr);
aclrtFree(slotMappingDeviceAddr);
aclrtFree(outputCacheRefDeviceAddr);
aclrtFree(blockTableDeviceAddr);
if (workspaceSize > 0) {
aclrtFree(workspaceAddr);
}
aclrtDestroyStream(stream);
aclrtResetDevice(deviceId);
aclFinalize();
return 0;
}