Commit Graph
3428 Commits
Author SHA1 Message Date
Dmitry Klyuchinsky aa43f301e5 add test for error exit gehd2 2023-02-14 12:30:58 +07:00
Dmitry Klyuchinsky 86d01a7aa2 extend test for error exit for sysv routines 2023-02-14 12:27:24 +07:00
Dmitry Klyuchinsky ab92781296 add test for error exit sytd2/hetd2 2023-02-14 12:18:26 +07:00
langou b1e25a3b67 Merge pull request #794 from thijssteel/multishiftqz-fix-shiftpos
don't subtract N_DEFLATED from istop twice
2023-02-10 20:24:38 -07:00
thijs 65850558e0 don't subtract N_DEFLATED from istop twice 2023-02-10 08:51:57 +01:00
Daniel Bielich c65a7a77d4 Progress to resolving the bug with complex testers 2023-02-09 13:10:42 -05:00
langou 10abd46dd1 Merge pull request #792 from dklyuchinskiy/fix-sbgv-xerbla-call
remove redundant space from xerbla call sbgv/hbgv
2023-02-08 07:03:14 -07:00
Dmitry Klyuchinsky 9f7c029040 remove redundant space from xerbla call sbgv/hbgv 2023-02-08 14:46:12 +07:00
langou 1fafb88f2c Merge pull request #782 from jgpallero/master
Warnings supression and deletion of unnecessary check in some LAPACKE xLARFB functions
2023-01-13 15:56:44 -07:00
J.L.G. Pallero 08f7efeba8 Warnings supression and deletion of unnecessary check in some LAPACKE xLARFB functions 2023-01-13 23:39:24 +01:00
Weslley S. Pereira 3a8b7579c6 Merge pull request #781 from Reference-LAPACK/revert-780-master
Revert "Warnings supression in some LAPACKE functions"
2023-01-13 13:31:03 -07:00
langou 60a3770406 Revert "Warnings supression in some LAPACKE functions" 2023-01-13 12:48:55 -07:00
langou 5bb9ab9a8f Merge pull request #780 from jgpallero/master
Warnings supression in some LAPACKE functions
2023-01-13 12:42:13 -07:00
J.L.G. Pallero b0b4577451 Warnings supression in some LAPACKE functions 2023-01-13 19:29:46 +01:00
langou 5aa66ade01 Merge pull request #775 from echeresh/echeresh/fix-larr
Fix uninitialized out variables in *LARR* functions
2022-12-19 09:20:19 -07:00
langou 351b443ef2 Merge pull request #764 from bartoldeman/fix-cslatrs3-test 2022-12-07 11:11:53 -07:00
sbite0138 a942408a9a Revert change regarding ldt_t value 2022-12-08 01:55:19 +09:00
Daniel Bielich 21059dca70 Progressing code 2022-12-06 16:17:38 -05:00
Chereshnev, Eugene 9a616e191c Fix uninitialized out vars in *LARR* functions 2022-12-05 09:46:47 -08:00
Mark Gates 116393587c fix workspace size in tgsen 2022-12-01 23:28:04 -07:00
langou 687bec3241 Merge pull request #773 from mgates3/tgsen
In LAPACKE tgsen, allocate iwork when ijob = 0. Fixes #772.
2022-12-01 16:15:51 -07:00
Mark Gates 01fb2060b5 In LAPACKE tgsen, allocate iwork when ijob = 0. Fixes #772. 2022-12-01 15:24:59 -07:00
langou 690e111e8f Merge pull request #769 from akobotov/fix_quick_return_in_larrd
Fix uninitialized M when quick return in DLARRD and SLARRD
2022-11-29 08:12:22 -07:00
Alexandr Kobotov 6ae0fbe7aa Fix uninitialized M when quick return in DLARRD and SLARRD 2022-11-29 18:55:08 +07:00
sbite0138 9764e5c703 fix segfault problem when executing with row major #766 2022-11-28 23:35:11 +09:00
langou a72090a912 Merge pull request #767 from svillemot/master
Fix CBLAS tests with 64-bit indexing
2022-11-27 09:11:01 -07:00
Sébastien Villemot 776a0223b0 Fix CBLAS tests with 64-bit indexing
This patch replaces all instances of “int” by “CBLAS_INT” in CBLAS/testing/*.c
(except for RowMajorStrg which has must remain an “int”, since it is declared
as such in CBLAS main code).

Interestingly, the bug would not manifest on low endian architectures,
because interpreting an int64_t pointer as an int32_t pointer works there (as
long as the integers fits in 31 bits, which is the case here). But on big
endian architectures, this of course fails badly.
2022-11-27 13:18:46 +01:00
langou 77fac7e835 Merge pull request #758 from dklyuchinskiy/lapack-fix-failure-eigtstz-zec
Fixed bug in array bounds in complex syl01 test
2022-11-23 07:08:41 -07:00
langou 9d85a7abbf Merge pull request #765 from weslleyspereira/master
Check for NaNs in *GECON
2022-11-22 18:51:14 -07:00
Weslley S Pereira 5d8a3a804b Check for NaNs in xGECON 2022-11-22 18:44:40 -07:00
Weslley S. Pereira 9b6076ab66 Merge branch 'master' into fix-cslatrs3-test 2022-11-22 12:08:31 -07:00
Weslley S. Pereira 9067b6b23c Merge pull request #755 from dklyuchinskiy/master
Fix bug in new test case for LAPACK 3.11 SLATRS3
2022-11-22 12:06:50 -07:00
Bart Oldeman 7f09f40bf4 Fix SLATRS3 and CLATRS3 tests
Some SLATRS3 tests were failing with OpenBLAS where the RHS has
a BIGNUM (=Infinity in this test) component. OpenBLAS SSCAL, when
multiplying with 0, will turn this component into 0, unlike
reference BLAS which turns it into NaN. While NaN looks more correct
it still did not explain why DLATRS3 tests were succeeding where
DSCAL has the same difference between reference and OpenBLAS.

Diffing the test code unmasked a few bugs, which makes the test succeed
and also unmasked a bug in the CLATRS3 test.

The ZLATRS3 and DLATRS3 tests look correct to me.
2022-11-22 01:08:27 +00:00
langou 159cdae627 Merge pull request #762 from ACSimon33/osx_flat_namespace
Added option to enable flat namespace on macOS
2022-11-21 07:04:18 -07:00
Simon Maertens 12f2f0ab37 Enabled flat namespace in macOS github workflows. 2022-11-20 00:22:20 +01:00
Simon Maertens 05043da7a6 Formatting. 2022-11-19 23:56:42 +01:00
Simon Maertens 9448b7ea99 Enabled flat namespace in macOS travis builds. 2022-11-19 23:36:27 +01:00
Simon Maertens 615727d1d4 Added option to enable flat namespace on macOS. 2022-11-19 23:18:45 +01:00
Simon Maertens e7afed35fb Fixed usage of HAS_ATTRIBUTE_WEAK_SUPPORT. Formatted cblas_f77.h 2022-11-19 21:25:15 +01:00
Julien Schueller feed6a7534 CMake: Disable TEST_FORTRAN_COMPILER
Closes #757
2022-11-18 19:23:41 +01:00
langou ca40397913 Merge pull request #760 from ACSimon33/windows_build_fix
Windows build fix
2022-11-18 08:50:46 -07:00
Simon Märtens 273d758e4a Fixed wrong external function name '[D|Z]GESVQ' -> '[D|Z]GESVDQ' 2022-11-18 16:37:47 +01:00
Simon Märtens 846f3cb324 Removed unnecessary return statement in void function. 2022-11-18 16:36:53 +01:00
Dmitry Klyuchinsky 9b5e2c50e3 fixed bug in array bounds in complex syl01 test 2022-11-18 17:58:06 +07:00
Daniel Bielich 7bfb8ffbff single precision tester finished, working on double complex 2022-11-17 14:43:09 -05:00
Dmitry Klyuchinsky a4dd9261ef use lsame instead EQ in iparam2stage 2022-11-17 19:10:08 +07:00
Dmitry Klyuchinsky 7f9f67572a fix wrong indexation in slatrs3 test 2022-11-17 19:06:00 +07:00
Daniel Bielich c4adf64dc0 Removing unused variables 2022-11-15 13:25:11 -05:00
langou 7866626840 Merge pull request #751 from weslleyspereira/lapack-3.11-preparation
Preparing LAPACK 3.11
v3.11 v3.11.0
2022-11-11 10:49:54 -07:00
Weslley da Silva Pereira 57f15d84c1 Change ILAVER and Doxyfile accordingly 2022-11-10 10:43:17 -07:00