diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2025-01-23 18:44:11 +0100 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2025-01-24 13:12:23 +0100 |
commit | c2c034b9f891334184f5dbdb1c63a0c44cf8b49d (patch) | |
tree | e72da4141573eae0f3ff8688e0e671fc3816a8c0 /math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f | |
parent | x11-wm/korgwm: Update 4.0 → 5.0 (diff) |
math/blas, math/cblas, math/lapack, math/lapacke: upgrade to 3.12.1
Release notes at https://github.com/Reference-LAPACK/lapack/releases/tag/v3.12.1
Remark: many patches are needed, see
https://github.com/Reference-LAPACK/lapack/pull/1093
Diffstat (limited to 'math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f')
-rw-r--r-- | math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f b/math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f new file mode 100644 index 000000000000..8bbac0dd3e47 --- /dev/null +++ b/math/lapack/files/patch-SRC_DEPRECATED_zgeqrs.f @@ -0,0 +1,24 @@ +--- SRC/DEPRECATED/zgeqrs.f.orig 2024-12-03 11:39:11 UTC ++++ SRC/DEPRECATED/zgeqrs.f +@@ -15,8 +15,9 @@ + * INTEGER INFO, LDA, LDB, LWORK, M, N, NRHS + * .. + * .. Array Arguments .. ++* Patch from https://github.com/Reference-LAPACK/lapack/pull/1094 + * COMPLEX*16 A( LDA, * ), B( LDB, * ), TAU( * ), +-* $ WORK( LWORK ) ++* $ WORK( * ) + * .. + * + * +@@ -127,8 +128,9 @@ + INTEGER INFO, LDA, LDB, LWORK, M, N, NRHS + * .. + * .. Array Arguments .. ++* Patch from https://github.com/Reference-LAPACK/lapack/pull/1094 + COMPLEX*16 A( LDA, * ), B( LDB, * ), TAU( * ), +- $ WORK( LWORK ) ++ $ WORK( * ) + * .. + * + * ===================================================================== |