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
Right now, spgemm (TPLs) require A and B to be sorted, while our native impl allows unsorted inputs. In many cases (like Tpetra) the user will know whether the matrices are sorted, but we don't give them a way to pass that information to us.
We also promise users that C is always sorted, even though that can add some cost (we have to explicitly sort the outputs from native and MKL).
Right now, spgemm (TPLs) require A and B to be sorted, while our native impl allows unsorted inputs. In many cases (like Tpetra) the user will know whether the matrices are sorted, but we don't give them a way to pass that information to us.
We also promise users that C is always sorted, even though that can add some cost (we have to explicitly sort the outputs from native and MKL).
Not all TPLs necessarily require sorted inputs:
mkl_sparse_sp2m
seems to not require sorted inputsThe text was updated successfully, but these errors were encountered: