(self, input_param, input_shape, expected_shape)
| 30 | |
| 31 | @parameterized.expand(TESTS) |
| 32 | def test_pad(self, input_param, input_shape, expected_shape): |
| 33 | modes = ["constant", NumpyPadMode.CONSTANT, PytorchPadMode.CONSTANT, "edge", NumpyPadMode.EDGE] |
| 34 | self.pad_test(input_param, input_shape, expected_shape, modes) |
| 35 | |
| 36 | @parameterized.expand(TESTS) |
| 37 | def test_pending_ops(self, input_param, input_shape, _): |