| 111 | T* DevicePointer(); |
| 112 | const T* ConstDevicePointer() const; |
| 113 | const T* DevicePointer() const { return ConstDevicePointer(); } |
| 114 | |
| 115 | T* HostPointer() { return HostVector().data(); } |
| 116 | common::Span<T> HostSpan() { return common::Span<T>{HostVector()}; } |