(self, input_param, input_shape, expected_shape)
| 37 | |
| 38 | @parameterized.expand(TESTS) |
| 39 | def test_pad(self, input_param, input_shape, expected_shape): |
| 40 | self.pad_test(input_param, input_shape, expected_shape) |
| 41 | |
| 42 | def test_pad_kwargs(self): |
| 43 | kwargs = {"spatial_size": [15, 8], "method": "end", "mode": "constant"} |