* 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 <vector>
#include <array>
#include "gtest/gtest.h"
#include "opdev/platform.h"
#include "../../../op_api/aclnn_round.h"
#include "op_api_ut_common/tensor_desc.h"
#include "op_api_ut_common/scalar_desc.h"
#include "op_api_ut_common/op_api_ut.h"
using namespace std;
class test_aclnn_round : public testing::Test {
protected:
static void SetUpTestCase()
{
cout << "test_aclnn_round SetUp" << endl;
}
static void TearDownTestCase()
{
cout << "test_aclnn_round TearDown" << endl;
}
};
TEST_F(test_aclnn_round, case_01_float)
{
op::SetPlatformSocVersion(op::SocVersion::ASCEND910B);
auto xDesc =
TensorDesc({2,2}, ACL_FLOAT, ACL_FORMAT_ND).Value(vector<float>{1.2f, -2.7f, 3.5f,4.2f});
auto yDesc = TensorDesc({2,2}, ACL_FLOAT, ACL_FORMAT_ND);
auto ut = OP_API_UT(aclnnRound, INPUT(xDesc), OUTPUT(yDesc));
uint64_t workspace_size = 0;
aclnnStatus aclRet = ut.TestGetWorkspaceSize(&workspace_size);
EXPECT_EQ(aclRet, ACLNN_SUCCESS);
}