You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The doumentation states that it's possible to query if an array is sparse using issparse, but it's unclear what more this implies. Does issparse(A) imply that the array extends SparseArrays functions such as nnz? Or does it imply that it's reasonable to use sparse(A) instead of A, as in the concatenation methods defined in this package? The latter would presumably also require the array to define sparse(A) to avoid slow fallbacks.
The text was updated successfully, but these errors were encountered:
The doumentation states that it's possible to query if an array is
sparse
usingissparse
, but it's unclear what more this implies. Doesissparse(A)
imply that the array extendsSparseArrays
functions such asnnz
? Or does it imply that it's reasonable to usesparse(A)
instead ofA
, as in the concatenation methods defined in this package? The latter would presumably also require the array to definesparse(A)
to avoid slow fallbacks.The text was updated successfully, but these errors were encountered: