* 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_l1_copy_reuse.cpp
* \brief Unit test for L1CopyInReuseMerge pass.
*/
#include <gtest/gtest.h>
#include "tilefwk/data_type.h"
#include "interface/function/function.h"
#include "tilefwk/tilefwk_op.h"
#include "tilefwk/tilefwk.h"
#include "interface/inner/tilefwk.h"
#include "interface/configs/config_manager.h"
using namespace npu::tile_fwk;
class HealthReportTest : public testing::Test {
public:
void SetUp() override
{
oriEnableAihacBackend = config::GetPlatformConfig(KEY_ENABLE_AIHAC_BACKEND, oriEnableAihacBackend);
config::SetPlatformConfig(KEY_ENABLE_AIHAC_BACKEND, true);
Program::GetInstance().Reset();
config::Reset();
config::SetPassDefaultConfig(KEY_HEALTH_CHECK, true);
}
void TearDown() override { config::SetPlatformConfig(KEY_ENABLE_AIHAC_BACKEND, oriEnableAihacBackend); }
protected:
bool oriEnableAihacBackend = false;
};
void TestLoopViewAssembleCopy(const Tensor& t0, const Tensor& t1, const Tensor& blockTable, Tensor& out, int s)
{
FUNCTION("main", {t0, t1, blockTable}, {out})
{
LOOP("L0", FunctionType::DYNAMIC_LOOP, i, LoopRange(GetInputShape(t0, 0) / s))
{
SymbolicScalar idx = GetTensorData(blockTable, {i, 0});
Tensor t0s = View(t0, {s, s}, {idx * s, 0});
Tensor qi(DT_FP32, {s, 2 * s}, "qi");
Assemble(t1, {0, 0}, qi);
Assemble(t0s, {0, s}, qi);
Tensor ki(DT_FP32, {s, 2 * s}, "ki");
Assemble(t0s, {0, 0}, ki);
Assemble(t1, {0, s}, ki);
Tensor t2 = Matrix::Matmul(DataType::DT_FP32, qi, ki, false, true);
Assemble(t2, {idx * s, 0}, out);
}
}
}
TEST_F(HealthReportTest, TestDD)
{
TileShape::Current().SetVecTile(32, 32);
TileShape::Current().SetCubeTile({32, 32}, {32, 32}, {32, 32});
std::vector<uint8_t> devProgBinary;
int s = 32;
int n = 8;
Tensor t0(DT_FP32, {n * s, s}, "t0");
Tensor t1(DT_FP32, {s, s}, "t1");
Tensor blockTable{DT_INT32, {n, 1}, "blockTable"};
Tensor out(DT_FP32, {n * s, s}, "out");
TestLoopViewAssembleCopy(t0, t1, blockTable, out, s);
auto funcMap = Program::GetInstance().GetFunctionMap();
}