From 1f7f2b582fe43e9e47de66b56b45aabba26df2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=BCtzel?= Date: Mon, 3 Feb 2025 09:27:35 +0100 Subject: [PATCH] svd: Slightly increase tolerance in BIST. * libinterp/corefcn/svd.cc: Slightly increase tolerance in BIST for driver "gejsv" to make test pass with LAPACK version 3.12.1. --- libinterp/corefcn/svd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libinterp/corefcn/svd.cc b/libinterp/corefcn/svd.cc index 1a4fec903a..b3272c6016 100644 --- a/libinterp/corefcn/svd.cc +++ b/libinterp/corefcn/svd.cc @@ -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); */