| 2413 | } |
| 2414 | |
| 2415 | Result<std::shared_ptr<SparseTensor>> MakeSparseTensorWithSparseCSCIndex( |
| 2416 | const std::shared_ptr<DataType>& type, const std::vector<int64_t>& shape, |
| 2417 | const std::vector<std::string>& dim_names, |
| 2418 | const std::shared_ptr<SparseCSCIndex>& sparse_index, int64_t non_zero_length, |
| 2419 | const std::shared_ptr<Buffer>& data) { |
| 2420 | return SparseCSCMatrix::Make(sparse_index, type, data, shape, dim_names); |
| 2421 | } |
| 2422 | |
| 2423 | Result<std::shared_ptr<SparseTensor>> MakeSparseTensorWithSparseCSFIndex( |
| 2424 | const std::shared_ptr<DataType>& type, const std::vector<int64_t>& shape, |
no test coverage detected