Skip to content

Commit

Permalink
Update blas3_trees.hpp
Browse files Browse the repository at this point in the history
Fixing the typo
  • Loading branch information
mehdi-goli authored Dec 10, 2018
1 parent 688da58 commit 15335a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/operations/blas3_trees.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,9 @@ class NoLocalGemmFactory {
// when C is uninitialized the element of the C can be NaN, and Nan*0
// will be NaN
if (0 == beta) {
C[i * wg_rows] = alpha * reg_res[i][j] + beta * C[i * wg_rows];
} else {
C[i * wg_rows] = alpha * reg_res[i][j];
} else {
C[i * wg_rows] = alpha * reg_res[i][j] + beta * C[i * wg_rows];
}
}
}
Expand Down

0 comments on commit 15335a5

Please sign in to comment.