(self)
| 8 | class TestPycuda(unittest.TestCase): |
| 9 | @gpu_test |
| 10 | def test_pycuda(self): |
| 11 | import pycuda.driver |
| 12 | pycuda.driver.init() |
| 13 | gpu_name = pycuda.driver.Device(0).name() |
| 14 | self.assertNotEqual(0, len(gpu_name)) |
nothing calls this directly
no outgoing calls
no test coverage detected