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