forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_tf_Cast.py
73 lines (56 loc) · 2.98 KB
/
test_tf_Cast.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright (C) 2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import numpy as np
import pytest
from common.tf_layer_test_class import CommonTFLayerTest
# Testing Cast operation (Initial Implementation)
# Documentation: https://www.tensorflow.org/api_docs/python/tf/raw_ops/Cast
class TestCastOp(CommonTFLayerTest):
input_type = np.float32
# Overload inputs generation to fill dummy input
def _prepare_input(self, inputs_dict):
for input in inputs_dict.keys():
inputs_dict[input] = np.random.randint(-256, 256, inputs_dict[input]).astype(self.input_type)
return inputs_dict
# input_shape - should be an array
# input_type - type of input value
# output_type - type of output value
# truncate - boolean flag of truncation
# ir_version - common parameter
# use_new_frontend - common parameter
def create_cast_op_placeholder_const_net(self, input_shape, input_type, output_type, truncate, ir_version, use_new_frontend):
if(input_type == output_type):
pytest.skip("Input and output types shouldn't be equal")
import tensorflow as tf
tf.compat.v1.reset_default_graph()
self.input_type = input_type
tf_types = {
np.int32: tf.int32, np.int64: tf.int64,
np.float16: tf.float16, np.float32: tf.float32, np.float64: tf.float64
}
# Create the graph and model
with tf.compat.v1.Session() as sess:
tf_input = tf.compat.v1.placeholder(tf_types[input_type], input_shape, 'Input')
tf.raw_ops.Cast(x = input_shape, DstT = output_type, Truncate = truncate)
tf.compat.v1.global_variables_initializer()
tf_net = sess.graph_def
ref_net = None
return tf_net, ref_net
test_data = [
pytest.param(
dict(input_shape=[2, 3]), #Simple test
marks=pytest.mark.precommit_tf_fe),
dict(input_shape=[2, 3, 3, 4]), #Simple test with possible nchw/nhwc
]
@pytest.mark.parametrize("params", test_data)
@pytest.mark.parametrize("input_type", [ np.int32, np.int64, np.float16, np.float32, np.float64 ])
@pytest.mark.parametrize("output_type", [ np.int32, np.int64, np.float16, np.float32, np.float64 ])
@pytest.mark.parametrize("truncate", [ False, True ])
@pytest.mark.nightly
def test_cast_op_placeholder_const(self, params, input_type, output_type, truncate, ie_device, precision, ir_version, temp_dir,
use_new_frontend, use_old_api):
self._test(*self.create_cast_op_placeholder_const_net(**params, ir_version=ir_version,
use_new_frontend=use_new_frontend, input_type=input_type,
output_type=output_type, truncate=truncate),
ie_device, precision, ir_version, temp_dir=temp_dir,
use_new_frontend=use_new_frontend, use_old_api=use_old_api)