@@ -1167,15 +1167,14 @@ def _test_range_non_const(self, extra_opset=None):
1167
1167
or check_node_domain (group_nodes_by_type (g )["Range" ][0 ], extra_opset .domain ))
1168
1168
tf .reset_default_graph ()
1169
1169
1170
- # disable this case for ms domain due to onnxruntime range-1 issue
1171
- # https://github.com/Microsoft/onnxruntime/issues/730
1172
- if not (extra_opset and extra_opset .domain == constants .MICROSOFT_DOMAIN ):
1173
- x = tf .range (3.0 , 3.0 , 5 )
1174
- _ = tf .identity (x , name = _TFOUTPUT )
1175
- g = self ._run_test_case ([_OUTPUT ], {}, process_args = process_args )
1176
- self .assertTrue (extra_opset is None
1177
- or check_node_domain (group_nodes_by_type (g )["Range" ][0 ], extra_opset .domain ))
1178
- tf .reset_default_graph ()
1170
+ # disable this case due to onnxruntime loop issue
1171
+ # https://github.com/microsoft/onnxruntime/issues/1272
1172
+ # x = tf.range(3.0, 3.0, 5)
1173
+ # _ = tf.identity(x, name=_TFOUTPUT)
1174
+ # g = self._run_test_case([_OUTPUT], {}, process_args=process_args)
1175
+ # self.assertTrue(extra_opset is None
1176
+ # or check_node_domain(group_nodes_by_type(g)["Range"][0], extra_opset.domain))
1177
+ # tf.reset_default_graph()
1179
1178
1180
1179
delta_val = np .array (1.5 , dtype = np .float32 )
1181
1180
delta = tf .placeholder (tf .float32 , shape = (), name = _TFINPUT )
0 commit comments