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