| 151 | |
| 152 | template<typename T> |
| 153 | SparseArray<T> createArrayDataSparseArray( |
| 154 | const af::dim4 &_dims, const Array<T> &_values, const Array<int> &_rowIdx, |
| 155 | const Array<int> &_colIdx, const af::storage _storage, const bool _copy) { |
| 156 | return SparseArray<T>(_dims, _values, _rowIdx, _colIdx, _storage, _copy); |
| 157 | } |
| 158 | |
| 159 | template<typename T> |
| 160 | SparseArray<T> copySparseArray(const SparseArray<T> &other) { |
no outgoing calls
no test coverage detected