Files
openvino/docs/template_plugin/tests/functional/op_reference/reduction.cpp
Gabriele Galiero Casay 70e6565619 Refactor backend test suite of Reduction ops into template plugin tests (#6930)
* Refactor visitor test of reduce operations to include operation name

* Add template plugin tests for reduction operations

* Remove backent unit tests of reduction operations

* Use Tensor utility to instantiate tests

* Use std::for_each instead of raw for loop to produce test case instances

* Cover remaining backend tests in manifest by SLTs cases

* Fix regex to skip cpu test failing in centos build with precision u64
2021-09-01 11:22:46 +03:00

16 lines
362 B
C++

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