* Remove fp16 of Convert layer test from skip_tests.config.cpp as it works now * update repo * add acos in template plugin reference test * Create visitor API test for target operation Acos-1 * remove acos backend test * remove acos backend test * add test casses of int ata type * remove boolean from acos evaluate
10 lines
315 B
C++
10 lines
315 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "unary_ops.hpp"
|
|
|
|
using Type = ::testing::Types<UnaryOperatorType<ngraph::op::Acos, ngraph::element::f32>>;
|
|
|
|
INSTANTIATE_TYPED_TEST_SUITE_P(visitor_without_attribute, UnaryOperatorVisitor, Type, UnaryOperatorTypeName);
|