Registers the data of every column into pinned memory, materializing them if necessary.
(self)
| 968 | return repr(dict(self)) |
| 969 | |
| 970 | def pin_memory_(self): |
| 971 | """Registers the data of every column into pinned memory, materializing them if |
| 972 | necessary.""" |
| 973 | for column in self._columns.values(): |
| 974 | column.pin_memory_() |
| 975 | |
| 976 | def unpin_memory_(self): |
| 977 | """Unregisters the data of every column from pinned memory, materializing them |