forked from mindspore-Ecosystem/mindspore
65 lines
2.0 KiB
C++
65 lines
2.0 KiB
C++
/**
|
|
* Copyright 2020 Huawei Technologies Co., Ltd
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#ifndef TESTS_CXX_ST_COMMON_COMMON_TEST_H_
|
|
#define TESTS_CXX_ST_COMMON_COMMON_TEST_H_
|
|
|
|
#include <cmath>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include "gtest/gtest.h"
|
|
#include "include/api/context.h"
|
|
|
|
namespace ST {
|
|
class Common : public testing::Test {
|
|
public:
|
|
// TestCase only enter once
|
|
static void SetUpTestCase();
|
|
static void TearDownTestCase();
|
|
|
|
// every TEST_F macro will enter one
|
|
virtual void SetUp();
|
|
virtual void TearDown();
|
|
|
|
template <typename T>
|
|
void PrintData(std::string name, T *output_data, int size) {
|
|
std::cout << "The " << name << " is as follows:" << std::endl;
|
|
if (typeid(output_data[0]) == typeid(uint8_t) || typeid(output_data[0]) == typeid(int8_t)) {
|
|
for (size_t i = 0; i < std::min(size, 100); i++) {
|
|
std::cout << (int)output_data[i] << " ";
|
|
}
|
|
} else {
|
|
for (size_t i = 0; i < std::min(size, 100); i++) {
|
|
std::cout << output_data[i] << " ";
|
|
}
|
|
}
|
|
std::cout << std::endl;
|
|
}
|
|
|
|
template <typename T>
|
|
static void CompareOutputData(T *output_data, T *correct_data, int size, float err_bound) {
|
|
for (size_t i = 0; i < size; i++) {
|
|
T abs = fabs(output_data[i] - correct_data[i]);
|
|
ASSERT_LE(abs, err_bound);
|
|
}
|
|
}
|
|
|
|
void ReadFile(const char *file, size_t *size, char **buf);
|
|
|
|
std::shared_ptr<mindspore::Context> ContextAutoSet();
|
|
};
|
|
} // namespace ST
|
|
#endif // TESTS_CXX_ST_COMMON_COMMON_TEST_H_
|