Files
openvino/ngraph/test/visitors/op/reduce_sum.cpp
Gabriele Galiero Casay 5a0bcf50c3 Add nGraph visitor tests for reduction operations (#5538)
* 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
2021-05-12 06:23:14 +03:00

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);