(self)
| 2886 | helper_test_op([(3, 3)], lambda x: x.repeat_interleave(2, -2)) |
| 2887 | |
| 2888 | def test_simple_repeat(self): |
| 2889 | repeats = [3, 3, 4] |
| 2890 | helper_test_op([(3, 3)], lambda x: x.repeat(*repeats), lambda x: x.repeat(repeats)) |
| 2891 | |
| 2892 | def test_clip(self): |
| 2893 | helper_test_op([(45,65)], lambda x: x.clip(-2.3, 1.2)) |
nothing calls this directly
no test coverage detected