Pin host memory and map into GPU address space (in-place)
(self)
| 360 | return target |
| 361 | |
| 362 | def pin_memory_(self): |
| 363 | """Pin host memory and map into GPU address space (in-place)""" |
| 364 | check_call(_LIB.DGLArrayPinData(self.handle)) |
| 365 | |
| 366 | def unpin_memory_(self): |
| 367 | """Unpin host memory pinned by pin_memory_()""" |
no test coverage detected