| 371 | } |
| 372 | |
| 373 | Status SparseCSCMatrixToNdarray(const std::shared_ptr<SparseCSCMatrix>& sparse_tensor, |
| 374 | PyObject* base, PyObject** out_data, |
| 375 | PyObject** out_indptr, PyObject** out_indices) { |
| 376 | return SparseCSXMatrixToNdarray(sparse_tensor, base, out_data, out_indptr, out_indices); |
| 377 | } |
| 378 | |
| 379 | Status SparseCSFTensorToNdarray(const std::shared_ptr<SparseCSFTensor>& sparse_tensor, |
| 380 | PyObject* base, PyObject** out_data, |
nothing calls this directly
no test coverage detected