* 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.
*/
#include <array>
#include <vector>
#include "gtest/gtest.h"
#include "../../../op_host/diag_v2_tiling.h"
#ifdef __CCE_KT_TEST__
#include "tikicpulib.h"
#include "data_utils.h"
#include "string.h"
#include <iostream>
#include <string>
#endif
#include <cstdint>
using namespace std;
extern "C" __global__ __aicore__ void diag_v2(GM_ADDR x, GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling);
class diag_v2_test : public testing::Test {
protected:
static void SetUpTestCase() {
cout << "diag_v2_test SetUp\n " << endl;
}
static void TearDownTestCase() {
cout << "diag_v2_test TearDown\n" << endl;
}
};
TEST_F(diag_v2_test, test_case_0) {
size_t inputByteSize = 326 * 326 * sizeof(int8_t);
size_t outputByteSize = 326 * sizeof(int8_t);
size_t tiling_data_size = sizeof(DiagV2TilingData);
uint8_t *x = (uint8_t *)AscendC::GmAlloc(inputByteSize);
uint8_t *y = (uint8_t *)AscendC::GmAlloc(outputByteSize);
uint8_t *workspace = (uint8_t *)AscendC::GmAlloc(4096 * 16);
uint8_t *tiling = (uint8_t *)AscendC::GmAlloc(tiling_data_size);
uint32_t numBlocks = 3;
system("cp -r ../../../../math/diag_v2/tests/ut/op_kernel/diag_v2_data ./");
system("chmod -R 755 ./diag_v2_data/");
system("cd ./diag_v2_data/ && rm -rf ./*bin");
system("cd ./diag_v2_data/ && python3 gen_data.py 326 326 int8");
system("cd ./diag_v2_data/ && python3 gen_tiling.py case0");
char * path_ = get_current_dir_name();
string path(path_);
ReadFile(path + "/diag_v2_data/input_x.bin", inputByteSize, x, inputByteSize);
ReadFile(path + "/diag_v2_data/tiling.bin", tiling_data_size, tiling, tiling_data_size);
ICPU_SET_TILING_KEY(2101);
AscendC::SetKernelMode(KernelMode::AIV_MODE);
ICPU_RUN_KF(diag_v2, numBlocks, x, y, workspace, tiling);
AscendC::GmFree(x);
AscendC::GmFree(y);
AscendC::GmFree(workspace);
AscendC::GmFree(tiling);
free(path_);
}