Files
openvino/src/tests/engines_util/shared_utils.hpp
Oleg Pipikin 7ccc48110d Move common test utils (#11022)
Co-authored-by: Ilya Churaev <ilya.churaev@intel.com>
2022-03-22 09:52:38 +03:00

18 lines
455 B
C++

// Copyright (C) 2018-2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#pragma once
#include <gtest/gtest.h>
#include <vector>
namespace ngraph {
namespace test {
testing::AssertionResult compare_with_tolerance(const std::vector<float>& expected_results,
const std::vector<float>& results,
const float tolerance);
}
} // namespace ngraph