(self)
| 98 | assert z.__dlpack_device__() == (1, 0) |
| 99 | |
| 100 | def dlpack_deleter_exception(self): |
| 101 | x = np.arange(5) |
| 102 | _ = x.__dlpack__() |
| 103 | raise RuntimeError |
| 104 | |
| 105 | def test_dlpack_destructor_exception(self): |
| 106 | with pytest.raises(RuntimeError): |
no test coverage detected