@@ -51,3 +51,73 @@ def test_pack_basic(self, params, ie_device, precision, ir_version, temp_dir,
51
51
self ._test (* self .create_pack_net (** params ),
52
52
ie_device , precision , ir_version , temp_dir = temp_dir ,
53
53
use_legacy_frontend = use_legacy_frontend )
54
+
55
+ test_data_negative_axis = [
56
+ dict (input_shape = [2 , 4 ], input_num = 2 , axis = - 1 , input_type = np .float32 ),
57
+ dict (input_shape = [3 , 1 , 2 ], input_num = 3 , axis = - 2 , input_type = np .int32 ),
58
+ ]
59
+
60
+ @pytest .mark .parametrize ("params" , test_data_negative_axis )
61
+ @pytest .mark .precommit
62
+ @pytest .mark .nightly
63
+ def test_pack_negative_axis (self , params , ie_device , precision , ir_version , temp_dir ,
64
+ use_legacy_frontend ):
65
+ self ._test (* self .create_pack_net (** params ),
66
+ ie_device , precision , ir_version , temp_dir = temp_dir ,
67
+ use_legacy_frontend = use_legacy_frontend )
68
+
69
+
70
+ class TestComplexPack (CommonTFLayerTest ):
71
+ def _prepare_input (self , inputs_info ):
72
+ inputs_data = {}
73
+ for input_name , input_shape in inputs_info .items ():
74
+ inputs_data [input_name ] = np .random .randint (- 5 , 5 , input_shape ).astype (np .float32 )
75
+ return inputs_data
76
+
77
+ def create_complex_pack_net (self , input_shape , input_num , axis ):
78
+ tf .compat .v1 .reset_default_graph ()
79
+ with tf .compat .v1 .Session () as sess :
80
+ inputs_real = []
81
+ inputs_imag = []
82
+ for ind in range (input_num ):
83
+ input_real = tf .compat .v1 .placeholder (tf .float32 , input_shape , 'input' + str (ind ) + '_real' )
84
+ input_imag = tf .compat .v1 .placeholder (tf .float32 , input_shape , 'input' + str (ind ) + '_imag' )
85
+ inputs_real .append (input_real )
86
+ inputs_imag .append (input_imag )
87
+ if axis is not None :
88
+ tf .raw_ops .Pack (values = inputs_real + inputs_imag , axis = axis )
89
+ else :
90
+ tf .raw_ops .Pack (values = inputs_real + inputs_imag )
91
+ tf .compat .v1 .global_variables_initializer ()
92
+
93
+ tf_net = sess .graph_def
94
+
95
+ return tf_net , None
96
+
97
+ test_data_basic = [
98
+ dict (input_shape = [2 , 4 ], input_num = 2 , axis = None ),
99
+ dict (input_shape = [3 , 1 , 2 ], input_num = 3 , axis = 1 ),
100
+ ]
101
+
102
+ @pytest .mark .parametrize ("params" , test_data_basic )
103
+ @pytest .mark .precommit
104
+ @pytest .mark .nightly
105
+ def test_complex_pack_basic (self , params , ie_device , precision , ir_version , temp_dir ,
106
+ use_legacy_frontend ):
107
+ self ._test (* self .create_complex_pack_net (** params ),
108
+ ie_device , precision , ir_version , temp_dir = temp_dir ,
109
+ use_legacy_frontend = use_legacy_frontend )
110
+
111
+ test_data_negative_axis = [
112
+ dict (input_shape = [2 , 4 ], input_num = 2 , axis = - 1 ),
113
+ dict (input_shape = [3 , 1 , 2 ], input_num = 3 , axis = - 2 ),
114
+ ]
115
+
116
+ @pytest .mark .parametrize ("params" , test_data_negative_axis )
117
+ @pytest .mark .precommit
118
+ @pytest .mark .nightly
119
+ def test_complex_pack_negative_axis (self , params , ie_device , precision , ir_version , temp_dir ,
120
+ use_legacy_frontend ):
121
+ self ._test (* self .create_complex_pack_net (** params ),
122
+ ie_device , precision , ir_version , temp_dir = temp_dir ,
123
+ use_legacy_frontend = use_legacy_frontend )
0 commit comments