| 861 | |
| 862 | template <typename ElemT> |
| 863 | ScopedDeviceMemory<ElemT>::ScopedDeviceMemory(StreamExecutor *parent, |
| 864 | DeviceMemoryBase value) |
| 865 | : wrapped_(value), |
| 866 | device_ordinal_(parent->device_ordinal()), |
| 867 | allocator_(parent->GetAllocator()) {} |
| 868 | |
| 869 | template <typename ElemT> |
| 870 | ScopedDeviceMemory<ElemT>::ScopedDeviceMemory( |
nothing calls this directly
no test coverage detected