We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0b073 commit de524e5Copy full SHA for de524e5
tests/test_backend.py
@@ -2472,7 +2472,7 @@ def test_batch_to_spacend(self):
2472
_ = tf.batch_to_space_nd(input_x, block_size, crop, name=_TFOUTPUT)
2473
self._run_test_case([_OUTPUT], {_INPUT: input_val})
2474
2475
- @check_opset_min_version(10, "BatchToSpaceND")
+ @check_opset_min_version(11, "BatchToSpaceND")
2476
def test_batch_to_spacend_non_const_7d(self):
2477
x_type, y_type, z_type = np.int64, np.int64, np.int64
2478
# test 3D upto 7D input tensors
@@ -2493,7 +2493,7 @@ def test_batch_to_spacend_non_const_7d(self):
2493
_ = tf.batch_to_space_nd(x, y, z, name=_TFOUTPUT)
2494
self._run_test_case([_OUTPUT], {_INPUT: x_val, _INPUT2: z_val})
2495
2496
- @check_opset_min_version(10, "SpaceToBatchND")
+ @check_opset_min_version(11, "SpaceToBatchND")
2497
def test_space_to_batchnd_non_const_7d(self):
2498
2499
0 commit comments