| 1502 | } |
| 1503 | |
| 1504 | Status GetSparseCOOIndexMetadata(const flatbuf::SparseTensorIndexCOO* sparse_index, |
| 1505 | std::shared_ptr<DataType>* indices_type) { |
| 1506 | return IntFromFlatbuffer(sparse_index->indicesType(), indices_type); |
| 1507 | } |
| 1508 | |
| 1509 | Status GetSparseCSXIndexMetadata(const flatbuf::SparseMatrixIndexCSX* sparse_index, |
| 1510 | std::shared_ptr<DataType>* indptr_type, |
no test coverage detected