forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_tf_TopKV2.py
53 lines (46 loc) · 2.44 KB
/
test_tf_TopKV2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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 TestTopKV2(CommonTFLayerTest):
def _prepare_input(self, inputs_info):
# generate elements so that the input tensor may contain repeating elements
assert 'input' in inputs_info, "Test error: inputs_info must contain `input`"
x_shape = inputs_info['input']
inputs_data = {}
inputs_data['input'] = np.random.randint(-10, 10, x_shape)
return inputs_data
def create_topk_v2_net(self, input_shape, input_type, k, sorted, is_first_output, is_second_output):
tf.compat.v1.reset_default_graph()
with tf.compat.v1.Session() as sess:
input = tf.compat.v1.placeholder(input_type, input_shape, 'input')
k = tf.constant(k, dtype=tf.int32, shape=[])
topk = tf.raw_ops.TopKV2(input=input, k=k, sorted=sorted)
if is_first_output:
tf.identity(topk[0], name='topk_values')
if is_second_output:
tf.identity(topk[1], name='unique_indices')
tf.compat.v1.global_variables_initializer()
tf_net = sess.graph_def
ref_net = None
return tf_net, None
test_basic = [
dict(input_shape=[10], input_type=tf.float32, k=5, sorted=True, is_first_output=True, is_second_output=False),
dict(input_shape=[2, 3, 10], input_type=tf.int32, k=10, sorted=True, is_first_output=True,
is_second_output=False),
dict(input_shape=[4, 12], input_type=tf.float32, k=10, sorted=True, is_first_output=True,
is_second_output=True),
# Expect stable mode implementation for sort_type=indices in OpenVINO. See 101503
pytest.param(dict(input_shape=[5, 10], input_type=tf.int32, k=8, sorted=False, is_first_output=True,
is_second_output=True), marks=pytest.mark.xfail(reason="101503")),
]
@pytest.mark.parametrize("params", test_basic)
@pytest.mark.precommit_tf_fe
@pytest.mark.nightly
def test_topk_v2_basic(self, params, ie_device, precision, ir_version, temp_dir, use_new_frontend,
use_old_api):
self._test(*self.create_topk_v2_net(**params),
ie_device, precision, ir_version, temp_dir=temp_dir,
use_new_frontend=use_new_frontend, use_old_api=use_old_api)