Skip to content

Commit

Permalink
fix bug in concurrent version of multTransA_reorder (used numRows ins…
Browse files Browse the repository at this point in the history
…tead of numCols to iterate)
  • Loading branch information
hageldave authored and lessthanoptimal committed Mar 18, 2023
1 parent ffb2531 commit 8331736
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public static void multTransA_reorder( DMatrix1Row A, DMatrix1Row B, DMatrix1Row
CommonOps_DDRM.fill(C, 0);
return;
}
//CONCURRENT_BELOW EjmlConcurrency.loopFor(0, A.numRows, i -> {
//CONCURRENT_BELOW EjmlConcurrency.loopFor(0, A.numCols, i -> {
for (int i = 0; i < A.numCols; i++) {
int indexC_start = i*C.numCols;

Expand Down

0 comments on commit 8331736

Please sign in to comment.