cutlass学习教程
一 接口
1.1 内存类
1.1.1 DeviceAllocation
1 位置
2 内置函数
(a)reset
/// Deletes the managed object and resets capacity to zero void reset() {capacity = 0;smart_ptr.reset(); }
(b)get
/// Returns a pointer to the managed object T* get() const { return smart_ptr.get(); }