We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue I neglected earlier
Data set:
/project/projectdirs/mp309/bella-spgemm/ecoli_hifi_29x.fastq
Parameters:
-k 31 -l 20 -u 23
Fix:
The issue appears to be in include/common/transpose.h, ~ line 35.
for (IT i=0; i <= n; i++) { cscColPtr[i+1] = atomicColPtr[i] + cscColPtr[i]; }
cscColPtr
is of length n+1 I believe (n rows, n+1 stores nnz).
However this writes at location n+1 (i.e. n+2nd element), causing out of bounds.
I believe the correct code would be
for (IT i=0; i < n; i++)
cscColPtr[i+1] already handles the +1 size correctly for the last index (n).
cscColPtr[i+1]
The text was updated successfully, but these errors were encountered:
@richardlett has this been fixed?
Sorry, something went wrong.
No branches or pull requests
Issue I neglected earlier
Data set:
/project/projectdirs/mp309/bella-spgemm/ecoli_hifi_29x.fastq
Parameters:
-k 31 -l 20 -u 23
Fix:
The issue appears to be in include/common/transpose.h, ~ line 35.
cscColPtr
is of length n+1 I believe (n rows, n+1 stores nnz).
However this writes at location n+1 (i.e. n+2nd element), causing out of bounds.
I believe the correct code would be
cscColPtr[i+1]
already handles the +1 size correctly for the last index (n).The text was updated successfully, but these errors were encountered: