| 40 | |
| 41 | template<class DLT> |
| 42 | class CDataStorageDLPackCPU : public astra::CDataMemory<float> { |
| 43 | public: |
| 44 | CDataStorageDLPackCPU(DLT *tensor); |
| 45 | virtual ~CDataStorageDLPackCPU(); |
| 46 | |
| 47 | protected: |
| 48 | DLT *m_pTensor; |
| 49 | |
| 50 | }; |
| 51 | |
| 52 | template<class DLT> |
| 53 | CDataStorageDLPackCPU<DLT>::CDataStorageDLPackCPU(DLT *tensor_m) |
nothing calls this directly
no outgoing calls
no test coverage detected