Expand description
Compressed Sparse Column (CSC) format.
CSC is the column-compressed counterpart of CSR. It stores:
col_ptr[cols+1]: indices intorow_idx/valuesfor each columnrow_idx[nnz]: row index for each non-zerovalues[nnz]: the non-zero values
CSC is efficient for column-oriented operations and is the natural format for the transpose of a CSR matrix.
Structsยง
- CscMatrix
- A sparse matrix in Compressed Sparse Column (CSC) format, stored on GPU.