14 lines
495 B
C++
14 lines
495 B
C++
// Copyright (C) 2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "unary_ops.hpp"
|
|
|
|
using Types = ::testing::Types<UnaryOperatorType<ngraph::op::v0::Negative, element::f32>,
|
|
UnaryOperatorType<ngraph::op::v0::Negative, element::i32>>;
|
|
|
|
INSTANTIATE_TYPED_TEST_SUITE_P(visitor_without_attribute,
|
|
UnaryOperatorVisitor,
|
|
Types,
|
|
UnaryOperatorTypeName);
|