| 108 | common::Span<T> DeviceSpan(); |
| 109 | common::Span<const T> ConstDeviceSpan() const; |
| 110 | common::Span<const T> DeviceSpan() const { return ConstDeviceSpan(); } |
| 111 | T* DevicePointer(); |
| 112 | const T* ConstDevicePointer() const; |
| 113 | const T* DevicePointer() const { return ConstDevicePointer(); } |
no outgoing calls
no test coverage detected