Replies: 1 comment
-
I would call |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Nearly everyone who has worked on mlir-graphblas has fallen into the trap of assuming that
dimLevelType
determines CSR vs CSC format. This is not the case. Instead,dimOrdering
is what differs between CSR and CSC.To explain what
dimLevelType
does, let's consider a simple 3x3 sparse matrix. We will represent this data using 4 differentdimLevelTypes
, but always in row-wise ordering.Dense Format
CSR Format
Block Sparse (?) format
This contains dense values, but only for rows with at least 1 value
HyperSparse or Doubly Compressed
Beta Was this translation helpful? Give feedback.
All reactions