Skip to content

Commit 7f0b073

Browse files
authored
Reduce opset from 11 to 10
1 parent f0a8750 commit 7f0b073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2472,7 +2472,7 @@ def test_batch_to_spacend(self):
24722472
_ = tf.batch_to_space_nd(input_x, block_size, crop, name=_TFOUTPUT)
24732473
self._run_test_case([_OUTPUT], {_INPUT: input_val})
24742474

2475-
@check_opset_min_version(11, "BatchToSpaceND")
2475+
@check_opset_min_version(10, "BatchToSpaceND")
24762476
def test_batch_to_spacend_non_const_7d(self):
24772477
x_type, y_type, z_type = np.int64, np.int64, np.int64
24782478
# test 3D upto 7D input tensors
@@ -2493,7 +2493,7 @@ def test_batch_to_spacend_non_const_7d(self):
24932493
_ = tf.batch_to_space_nd(x, y, z, name=_TFOUTPUT)
24942494
self._run_test_case([_OUTPUT], {_INPUT: x_val, _INPUT2: z_val})
24952495

2496-
@check_opset_min_version(11, "SpaceToBatchND")
2496+
@check_opset_min_version(10, "SpaceToBatchND")
24972497
def test_space_to_batchnd_non_const_7d(self):
24982498
x_type, y_type, z_type = np.int64, np.int64, np.int64
24992499
# test 3D upto 7D input tensors

0 commit comments

Comments
 (0)