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