* 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
16 lines
366 B
C++
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
|