(self)
| 76 | @SkipIfNoModule("cupy") |
| 77 | @SkipIfNoModule("kvikio") |
| 78 | def test_readers_to_gpu(self): |
| 79 | for to_gpu in [True, False]: |
| 80 | inst = NibabelReader(to_gpu=to_gpu) |
| 81 | self.assertIsInstance(inst, NibabelReader) |
| 82 | |
| 83 | @SkipIfNoModule("nibabel") |
| 84 | def test_nibabel_reader_avoids_eager_c_order_copy(self): |
nothing calls this directly
no test coverage detected