Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjmurray committed Jun 11, 2024
1 parent a4b468e commit b731036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RandBLAS/base.hh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void require_symmetric(blas::Layout layout, T* A, int64_t n, int64_t lda, T tol)
T rel_tol = (abs(Aij) + abs(Aji) + 1)*tol;
if (viol > rel_tol) {
randblas_error_if_msg(
viol > rel_tol
viol > rel_tol,
"Symmetry check failed. |A(%i,%i) - A(%i,%i)| was %d, which exceeds tolerance of %d", i, j, j, i, viol, rel_tol
);
}
Expand Down

0 comments on commit b731036

Please sign in to comment.