* Add ngraph visitor tests for reduction operations * Add check for number of expected attributes * Add ReduceL1 and ReduceL2 to visitor test typed case of reduce ops * Instantiate reduce operation type in separate file
9 lines
252 B
C++
9 lines
252 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "reduce_ops.hpp"
|
|
|
|
using Type = ::testing::Types<ngraph::op::v1::ReduceSum>;
|
|
INSTANTIATE_TYPED_TEST_CASE_P(attributes_reduce_sum, ReduceOpsAttrTest, Type);
|