(self, dtype, device)
| 1842 | @pytest.mark.parametrize("dtype", [torch.float32, torch.uint8]) |
| 1843 | @pytest.mark.parametrize("device", cpu_and_cuda()) |
| 1844 | def test_kernel_image(self, dtype, device): |
| 1845 | check_kernel(F.vertical_flip_image, make_image(dtype=dtype, device=device)) |
| 1846 | |
| 1847 | @pytest.mark.parametrize("format", list(tv_tensors.BoundingBoxFormat)) |
| 1848 | @pytest.mark.parametrize("dtype", [torch.float32, torch.int64]) |
nothing calls this directly
no test coverage detected