| 37 | DevicePointer<_Scalar> data_; |
| 38 | public: |
| 39 | DenseStorage() : data_(Index(_Rows) * _Columns * _Batches) {} |
| 40 | __host__ __device__ |
| 41 | DenseStorage(const DenseStorage& other) : data_(other.data_) {} |
| 42 | DenseStorage& operator=(const DenseStorage& other) |
nothing calls this directly
no outgoing calls
no test coverage detected