* [TF FE]Support Inv operation for TensorFlow models * added test tests/layer_tests/tensorflow_tests/test_tf_Inv.py and src/frontends/tensorflow_common/src/op/inv.cpp * Update tests/layer_tests/tensorflow_tests/test_tf_Inv.py * Update tests/layer_tests/tensorflow_tests/test_tf_Inv.py * Update tests/layer_tests/tensorflow_tests/test_tf_Inv.py --------- Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import numpy as np
|
|
import pytest
|
|
import tensorflow as tf
|
|
from common.tf_layer_test_class import CommonTFLayerTest
|
|
|
|
|
|
class TestInv(CommonTFLayerTest):
|
|
def _prepare_input(self, inputs_info):
|
|
assert 'x' in inputs_info
|
|
x_shape = inputs_info['x']
|
|
inputs_data = {}
|
|
inputs_data['x'] = np.random.choice([-5, -4, -3, -2, -1, 1, 2, 3, 4, 5], x_shape).astype(np.float32)
|
|
|
|
return inputs_data
|
|
|
|
def create_inv_net(self, input_shape, input_type):
|
|
self.input_type = input_type
|
|
tf.compat.v1.reset_default_graph()
|
|
# Create the graph and model
|
|
with tf.compat.v1.Session() as sess:
|
|
x = tf.compat.v1.placeholder(input_type, input_shape, 'x')
|
|
tf.raw_ops.Inv(x=x)
|
|
tf.compat.v1.global_variables_initializer()
|
|
tf_net = sess.graph_def
|
|
|
|
return tf_net, None
|
|
|
|
test_data_basic = [
|
|
dict(input_shape=[], input_type=np.float32),
|
|
dict(input_shape=[10, 20], input_type=np.float32),
|
|
dict(input_shape=[2, 3, 4], input_type=np.float32),
|
|
]
|
|
|
|
@pytest.mark.parametrize("params", test_data_basic)
|
|
@pytest.mark.precommit_tf_fe
|
|
@pytest.mark.nightly
|
|
def test_inv_basic(self, params, ie_device, precision, ir_version, temp_dir,
|
|
use_new_frontend, use_old_api):
|
|
self._test(*self.create_inv_net(**params),
|
|
ie_device, precision, ir_version, temp_dir=temp_dir,
|
|
use_new_frontend=use_new_frontend, use_old_api=use_old_api) |