| 362 | } |
| 363 | |
| 364 | Status SparseCSRMatrixToNdarray(const std::shared_ptr<SparseCSRMatrix>& sparse_tensor, |
| 365 | PyObject* base, PyObject** out_data, |
| 366 | PyObject** out_indptr, PyObject** out_indices) { |
| 367 | return SparseCSXMatrixToNdarray(sparse_tensor, base, out_data, out_indptr, out_indices); |
| 368 | } |
| 369 | |
| 370 | Status SparseCSCMatrixToNdarray(const std::shared_ptr<SparseCSCMatrix>& sparse_tensor, |
| 371 | PyObject* base, PyObject** out_data, |
nothing calls this directly
no test coverage detected