()
| 98 | |
| 99 | @attr("cupy") |
| 100 | def test_cupy_containers(): |
| 101 | import cupy as cp |
| 102 | |
| 103 | test_array = cp.array([[42, 42], [42, 42]], dtype=cp.uint8) |
| 104 | disallowed_samples = [test_array, tensors.TensorGPU(test_array)] |
| 105 | disallowed_batches = [tensors.TensorListGPU(test_array)] |
| 106 | yield from run_checks([], [], disallowed_samples, disallowed_batches) |
nothing calls this directly
no test coverage detected