Skip to content

Commit

Permalink
svd: Slightly increase tolerance in BIST.
Browse files Browse the repository at this point in the history
* libinterp/corefcn/svd.cc: Slightly increase tolerance in BIST for driver
"gejsv" to make test pass with LAPACK version 3.12.1.
  • Loading branch information
mmuetzel committed Feb 3, 2025
1 parent ac06f60 commit 1f7f2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libinterp/corefcn/svd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ in Octave has been set to @qcode{"gesvd"}.
%! assert (V1, V2, 6*eps);
%! z = U1(1,:) ./ U3(1,:);
%! assert (U1, U3 .* z, 100*eps);
%! assert (S1, S3, 6*eps);
%! assert (S1, S3, 10*eps);
%! assert (V1, V3 .* z, 100*eps);
*/

Expand Down

0 comments on commit 1f7f2b5

Please sign in to comment.