Files
openvino/docs/template_plugin/tests/functional/op_reference/conversion.cpp
Gabriele Galiero Casay 371fc7aee4 Enable low precision types in ConvertLike operation reference implementation (#6890)
* Enable low precision types for ConvertLike operation

* Migrate backend unit test suite to template plugin reference tests

* Fix typo in naming convention

* Avoid duplication of template plugin tests execution

* Add file to instantiate TEST_P and avoid test execution duplication
2021-08-06 11:19:16 +03:00

16 lines
366 B
C++

// Copyright (C) 2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "conversion.hpp"
namespace reference_tests {
namespace ConversionOpsRefTestDefinitions {
namespace {
TEST_P(ReferenceConversionLayerTest, CompareWithHardcodedRefs) {
Exec();
}
} // namespace
} // namespace ConversionOpsRefTestDefinitions
} // namespace reference_tests