Skip to content

Recursive LAUUM - #1402

Open
jprhyne wants to merge 2 commits into
Reference-LAPACK:masterfrom
jprhyne:rec_lauum_only_lauum
Open

Recursive LAUUM#1402
jprhyne wants to merge 2 commits into
Reference-LAPACK:masterfrom
jprhyne:rec_lauum_only_lauum

Conversation

@jprhyne

@jprhyne jprhyne commented Sep 10, 2026

Copy link
Copy Markdown
Contributor

Description
As discussed in PR #1373, here is the implementation of a recursive LAUUM. Since some may prefer a blocked algorithm, we are proposing that we use *lauum.f as a dispatch to whatever implementation is desired in a given environment. It's possible to somehow utilize ilaenv to do the dispatch or to have this logic inside lauum.f directly.

In addition, since it is hardware dependent, I default to NX=64 as a crossover to lauu2. Due to how ILAENV parses the (sub)-routine names, any LAUUM routine that queries for NX will return the same value. This could be relevant if an NX parameter is to be introduced into the blocked variant. I'm not sure what the preferred method to deal with this is, so I propose that we defer this decision until it becomes relevant.

But, if it is better to solve this issue now, I propose adding another variable that checks for whatever comes after underscores in ILAENV. However, since this type of naming is not convention, I do not believe it is a good idea unless there becomes a standardized way of having different variant names in the main source directory.

Since this is a change to an auxiliary routine without a change in any public facing APIs, I do not think it is important to solve at this moment.
Checklist

  • The documentation has been updated.
  • If the PR solves a specific issue, it is set to be closed on merge. (N/A)

Johnathan Rhyne added 2 commits September 10, 2026 14:24
…lauum is a dispatch to the varint of choice. We are defaulting to recursive, but could be blocked as well
…how ilaenv parses names, any lauum routine that queries for nx will return the same value.
@codecov

codecov Bot commented Sep 10, 2026

Copy link
Copy Markdown

❌ 8 Tests Failed:

Tests completed Failed Passed Skipped
389 8 381 0
View the top 3 failed test(s) by shortest run time
BLAS.blas::cblat2.out (COMPLEX Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::cblat3.out (COMPLEX Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::dblat2.out (DOUBLE PRECISION Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::sblat3.out (REAL Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::zblat2.out (COMPLEX16 Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::zblat3.out (COMPLEX16 Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::cblat2_64.out (COMPLEX Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::cblat3_64.out (COMPLEX Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::dblat2_64.out (DOUBLE PRECISION Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::dblat3_64.out (DOUBLE PRECISION Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::zblat2_64.out (COMPLEX16 Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::zblat3_64.out (COMPLEX16 Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::dtest3.out (DOUBLE PRECISION C interface to Level 3 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::dtest2_64.out (DOUBLE PRECISION C interface to Level 2 BLAS routines)
Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
memcheck::LAPACK-xlintstc_ctest_in
Stack Traces | 0s run time
4680 error(s) from 30 context(s) reported by valgrind
==33534== Memcheck, a memory error detector
==33534== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33534== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33534== Command: .../build/bin/xlintstc
==33534== Parent PID: 33454
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0F24: clauum_recursive_ (clauum_recursive.f:268)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53C1261: clauum_recursive_ (clauum_recursive.f:279)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534==  Uninitialised value was created by a stack allocation
==33534==    at 0x53C086C: clauum_recursive_ (clauum_recursive.f:99)
==33534== 
==33534== Conditional jump or move depends on uninitialised value(s)
==33534==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0EFA: clauum_recursive_ (clauum_recursive.f:226)
==33534==    by 0x53C0BAC: clauum_recursive_ (clauum_recursive.f:215)
==33534==    by 0x53BF78F: clauum_ (clauum.f:165)
==33534==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33534==    by 0x16A4EE: cchkpo_ (cchkpo.f:385)
==33534==    by 0x134518: MAIN__ (cchkaa.F:548)
==33534==    by 0x14B844: main (cchkaa.F:1293)
==33534=
... [log truncated]
memcheck::LAPACK-xlintstd_dtest_in
Stack Traces | 0s run time
4680 error(s) from 30 context(s) reported by valgrind
==33732== Memcheck, a memory error detector
==33732== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33732== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33732== Command: .../build/bin/xlintstd
==33732== Parent PID: 33454
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732==  Uninitialised value was created by a stack allocation
==33732==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==33732== 
==33732== Conditional jump or move depends on uninitialised value(s)
==33732==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==33732==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==33732==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==33732==    by 0x4F06636: dpotri_ (dpotri.f:150)
==33732==    by 0x156071: dchkpo_ (dchkpo.f:385)
==33732==    by 0x1332E6: MAIN__ (dchkaa.F:544)
==33732==    by 0x14500F: main (dchkaa.F:1136)
==33732=
... [log truncated]
memcheck::LAPACK-xlintstrfc_ctest_rfp_in
Stack Traces | 0s run time
1296 error(s) from 17 context(s) reported by valgrind
==33996== Memcheck, a memory error detector
==33996== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33996== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33996== Command: .../build/bin/xlintstrfc
==33996== Parent PID: 33454
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x53D015B: cpotri_ (cpotri.f:150)
==33996==    by 0x10D66C: cdrvrfp_ (cdrvrfp.f:449)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFDA5: cpftri_ (cpftri.f:306)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C018C: cpftri_ (cpftri.f:340)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BF9BD: cpftri_ (cpftri.f:312)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFDE2: cpftri_ (cpftri.f:345)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFC0B: cpftri_ (cpftri.f:306)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFFD8: cpftri_ (cpftri.f:340)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFB96: cpftri_ (cpftri.f:306)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54BFF5D: cpftri_ (cpftri.f:352)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C0414: cpftri_ (cpftri.f:399)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C05F5: cpftri_ (cpftri.f:405)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C089F: cpftri_ (cpftri.f:413)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C0A56: cpftri_ (cpftri.f:413)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C01E9: cpftri_ (cpftri.f:385)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C0390: cpftri_ (cpftri.f:391)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C0674: cpftri_ (cpftri.f:413)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== Conditional jump or move depends on uninitialised value(s)
==33996==    at 0x53C0B40: clauum_recursive_ (clauum_recursive.f:166)
==33996==    by 0x53BF78F: clauum_ (clauum.f:165)
==33996==    by 0x54C0821: cpftri_ (cpftri.f:425)
==33996==    by 0x10DCE9: cdrvrfp_ (cdrvrfp.f:531)
==33996==    by 0x10C671: MAIN__ (cchkrfp.f:242)
==33996==    by 0x10C96C: main (cchkrfp.f:289)
==33996==  Uninitialised value was created by a stack allocation
==33996==    at 0x4981C40: ??? (in .../build/lib/liblapack.so.3.12.1)
==33996== 
==33996== 
==33996== HEAP SUMMARY:
==33996==     in use at exit: 0 bytes in 0 blocks
==33996==   total heap usage: 68 allocs, 68 frees, 90,298 bytes allocated
==33996== 
==33996== All heap blocks were freed -- no leaks are possible
==33996== 
==33996== For lists of detected and suppressed errors, rerun with: -s
==33996== ERROR SUMMARY: 1296 errors from 17 contexts (suppressed: 0 from 0)
memcheck::LAPACK-xlintstrfd_dtest_rfp_in
Stack Traces | 0s run time
1680 error(s) from 33 context(s) reported by valgrind
==34221== Memcheck, a memory error detector
==34221== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==34221== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==34221== Command: .../build/bin/xlintstrfd
==34221== Parent PID: 33454
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x4F06636: dpotri_ (dpotri.f:150)
==34221==    by 0x10D609: ddrvrfp_ (ddrvrfp.f:437)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50224E9: dpftri_ (dpftri.f:284)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50228D0: dpftri_ (dpftri.f:318)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022101: dpftri_ (dpftri.f:290)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022526: dpftri_ (dpftri.f:323)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502234F: dpftri_ (dpftri.f:284)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50224E9: dpftri_ (dpftri.f:284)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502271C: dpftri_ (dpftri.f:318)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50222DA: dpftri_ (dpftri.f:284)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50226A1: dpftri_ (dpftri.f:330)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50228D0: dpftri_ (dpftri.f:318)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022B58: dpftri_ (dpftri.f:377)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022D39: dpftri_ (dpftri.f:383)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022D39: dpftri_ (dpftri.f:383)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022FE3: dpftri_ (dpftri.f:391)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502319A: dpftri_ (dpftri.f:391)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502292D: dpftri_ (dpftri.f:363)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022AD4: dpftri_ (dpftri.f:369)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022DB8: dpftri_ (dpftri.f:391)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022F65: dpftri_ (dpftri.f:403)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4984910: ??? (in .../build/lib/liblapack.so.3.12.1)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022F65: dpftri_ (dpftri.f:403)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE2342: dlauum_recursive_ (dlauum_recursive.f:226)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022AD4: dpftri_ (dpftri.f:369)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE26A9: dlauum_recursive_ (dlauum_recursive.f:279)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502319A: dpftri_ (dpftri.f:391)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022D39: dpftri_ (dpftri.f:383)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022F65: dpftri_ (dpftri.f:403)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE236C: dlauum_recursive_ (dlauum_recursive.f:268)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x502319A: dpftri_ (dpftri.f:391)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x5022AD4: dpftri_ (dpftri.f:369)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was created by a stack allocation
==34221==    at 0x4EE1CEF: dlauum_recursive_ (dlauum_recursive.f:99)
==34221== 
==34221== Conditional jump or move depends on uninitialised value(s)
==34221==    at 0x4EE1F88: dlauum_recursive_ (dlauum_recursive.f:166)
==34221==    by 0x4EE1FF4: dlauum_recursive_ (dlauum_recursive.f:215)
==34221==    by 0x4EE0C12: dlauum_ (dlauum.f:163)
==34221==    by 0x50224E9: dpftri_ (dpftri.f:284)
==34221==    by 0x10DC97: ddrvrfp_ (ddrvrfp.f:519)
==34221==    by 0x10C645: MAIN__ (dchkrfp.f:241)
==34221==    by 0x10C942: main (dchkrfp.f:288)
==34221==  Uninitialised value was cre
... [log truncated]
memcheck::LAPACK-xlintstrfs_stest_rfp_in
Stack Traces | 0s run time
1678 error(s) from 33 context(s) reported by valgrind
==33717== Memcheck, a memory error detector
==33717== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33717== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33717== Command: .../build/bin/xlintstrfs
==33717== Parent PID: 33454
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4B177E7: spotri_ (spotri.f:150)
==33717==    by 0x10D52E: sdrvrfp_ (sdrvrfp.f:437)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E37C: spftri_ (spftri.f:284)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E763: spftri_ (spftri.f:318)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2DF94: spftri_ (spftri.f:290)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E3B9: spftri_ (spftri.f:323)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E1E2: spftri_ (spftri.f:284)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E37C: spftri_ (spftri.f:284)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E5AF: spftri_ (spftri.f:318)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E16D: spftri_ (spftri.f:284)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E534: spftri_ (spftri.f:330)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E763: spftri_ (spftri.f:318)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E9EB: spftri_ (spftri.f:377)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EBCC: spftri_ (spftri.f:383)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EBCC: spftri_ (spftri.f:383)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EE76: spftri_ (spftri.f:391)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2F02D: spftri_ (spftri.f:391)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E7C0: spftri_ (spftri.f:363)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E967: spftri_ (spftri.f:369)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EC4B: spftri_ (spftri.f:391)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EDF8: spftri_ (spftri.f:403)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EDF8: spftri_ (spftri.f:403)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E967: spftri_ (spftri.f:369)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2F02D: spftri_ (spftri.f:391)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EBCC: spftri_ (spftri.f:383)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2EDF8: spftri_ (spftri.f:403)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2F02D: spftri_ (spftri.f:391)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E967: spftri_ (spftri.f:369)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was created by a stack allocation
==33717==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33717== 
==33717== Conditional jump or move depends on uninitialised value(s)
==33717==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33717==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33717==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33717==    by 0x4C2E37C: spftri_ (spftri.f:284)
==33717==    by 0x10DBA8: sdrvrfp_ (sdrvrfp.f:519)
==33717==    by 0x10C5AA: MAIN__ (schkrfp.f:240)
==33717==    by 0x10C899: main (schkrfp.f:287)
==33717==  Uninitialised value was cre
... [log truncated]
memcheck::LAPACK-xlintstrfz_ztest_rfp_in
Stack Traces | 0s run time
1296 error(s) from 17 context(s) reported by valgrind
==33462== Memcheck, a memory error detector
==33462== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33462== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33462== Command: .../build/bin/xlintstrfz
==33462== Parent PID: 33454
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33462==    by 0x10D6F0: zdrvrfp_ (zdrvrfp.f:449)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58DFFC1: zpftri_ (zpftri.f:306)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E03A2: zpftri_ (zpftri.f:340)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58DFBE1: zpftri_ (zpftri.f:312)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58DFFFE: zpftri_ (zpftri.f:345)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58DFE2A: zpftri_ (zpftri.f:306)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E01F1: zpftri_ (zpftri.f:340)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58DFDB6: zpftri_ (zpftri.f:306)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0177: zpftri_ (zpftri.f:352)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0627: zpftri_ (zpftri.f:399)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0805: zpftri_ (zpftri.f:405)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0AAA: zpftri_ (zpftri.f:413)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0C5E: zpftri_ (zpftri.f:413)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E03FF: zpftri_ (zpftri.f:385)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E05A4: zpftri_ (zpftri.f:391)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0883: zpftri_ (zpftri.f:413)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== Conditional jump or move depends on uninitialised value(s)
==33462==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33462==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33462==    by 0x58E0A2D: zpftri_ (zpftri.f:425)
==33462==    by 0x10DD81: zdrvrfp_ (zdrvrfp.f:531)
==33462==    by 0x10C679: MAIN__ (zchkrfp.f:242)
==33462==    by 0x10C976: main (zchkrfp.f:289)
==33462==  Uninitialised value was created by a stack allocation
==33462==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33462== 
==33462== 
==33462== HEAP SUMMARY:
==33462==     in use at exit: 0 bytes in 0 blocks
==33462==   total heap usage: 70 allocs, 70 frees, 95,087 bytes allocated
==33462== 
==33462== All heap blocks were freed -- no leaks are possible
==33462== 
==33462== For lists of detected and suppressed errors, rerun with: -s
==33462== ERROR SUMMARY: 1296 errors from 17 contexts (suppressed: 0 from 0)
memcheck::LAPACK-xlintsts_stest_in
Stack Traces | 0s run time
4680 error(s) from 30 context(s) reported by valgrind
==33836== Memcheck, a memory error detector
==33836== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33836== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33836== Command: .../build/bin/xlintsts
==33836== Parent PID: 33454
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4983980: ??? (in .../build/lib/liblapack.so.3.12.1)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5416: slauum_recursive_ (slauum_recursive.f:268)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF5753: slauum_recursive_ (slauum_recursive.f:279)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836==  Uninitialised value was created by a stack allocation
==33836==    at 0x4AF4D99: slauum_recursive_ (slauum_recursive.f:99)
==33836== 
==33836== Conditional jump or move depends on uninitialised value(s)
==33836==    at 0x4AF5032: slauum_recursive_ (slauum_recursive.f:166)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF53EC: slauum_recursive_ (slauum_recursive.f:226)
==33836==    by 0x4AF509E: slauum_recursive_ (slauum_recursive.f:215)
==33836==    by 0x4AF3CBC: slauum_ (slauum.f:163)
==33836==    by 0x4B177E7: spotri_ (spotri.f:150)
==33836==    by 0x1558D9: schkpo_ (schkpo.f:385)
==33836==    by 0x1331FE: MAIN__ (schkaa.F:540)
==33836==    by 0x144A5F: main (schkaa.F:1129)
==33836=
... [log truncated]
memcheck::LAPACK-xlintstz_ztest_in
Stack Traces | 0s run time
4680 error(s) from 30 context(s) reported by valgrind
==33975== Memcheck, a memory error detector
==33975== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==33975== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==33975== Command: .../build/bin/xlintstz
==33975== Parent PID: 33454
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x4986340: ??? (in .../build/lib/liblapack.so.3.12.1)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2506: zlauum_recursive_ (zlauum_recursive.f:268)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D283F: zlauum_recursive_ (zlauum_recursive.f:279)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975==  Uninitialised value was created by a stack allocation
==33975==    at 0x57D1E1F: zlauum_recursive_ (zlauum_recursive.f:99)
==33975== 
==33975== Conditional jump or move depends on uninitialised value(s)
==33975==    at 0x57D2126: zlauum_recursive_ (zlauum_recursive.f:166)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D24DC: zlauum_recursive_ (zlauum_recursive.f:226)
==33975==    by 0x57D2192: zlauum_recursive_ (zlauum_recursive.f:215)
==33975==    by 0x57D0D52: zlauum_ (zlauum.f:165)
==33975==    by 0x57E3007: zpotri_ (zpotri.f:150)
==33975==    by 0x16BA09: zchkpo_ (zchkpo.f:385)
==33975==    by 0x134600: MAIN__ (zchkaa.F:548)
==33975==    by 0x14C2FE: main (zchkaa.F:1327)
==33975=
... [log truncated]
LAPACK_64.eig::clse_64.out (COMPLEX Constrained Linear Least Squares routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGLSE_64 parameter number  1 had an illegal value
LAPACK_64.eig::cnep_64.out (COMPLEX Nonsymmetric Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEBAL_64 parameter number  1 had an illegal value
LAPACK_64.eig::csep_64.out (COMPLEX Symmetric Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHETRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::ded_64.out (DOUBLE PRECISION Nonsymmetric Eigenvalue)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEEV_64 parameter number  1 had an illegal value
LAPACK_64.eig::sec_64.out (REAL Eigen Condition)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to STRSYL_64 parameter number  1 had an illegal value
LAPACK_64.eig::sed_64.out (REAL Nonsymmetric Eigenvalue)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEEV_64 parameter number  1 had an illegal value
LAPACK_64.eig::slse_64.out (REAL Constrained Linear Least Squares routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGLSE_64 parameter number  1 had an illegal value
LAPACK_64.eig::ssep_64.out (REAL Symmetric Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSYTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::ssvd_64.out (REAL Singular Value Decomposition)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEBRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zec_64.out (COMPLEX16 Eigen Condition)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZTRSYL_64 parameter number  1 had an illegal value
LAPACK_64.eig::zgd_64.out (COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem driver)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGES_64 parameter number  1 had an illegal value
LAPACK_64.eig::zgg_64.out (COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGHRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zglm_64.out (COMPLEX16 Generalized Linear Regression Model routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGGLM_64 parameter number  1 had an illegal value
LAPACK_64.eig::zgqr_64.out (COMPLEX16 Generalized QR and RQ factorization routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGQRF_64 parameter number  1 had an illegal value
LAPACK_64.eig::zsb_64.out (COMPLEX16 Symmetric Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHBTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zse2_64.out (COMPLEX16 Symmetric Eigenvalue Problem 2-stage)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHETRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zsep_64.out (COMPLEX16 Symmetric Eigenvalue Problem)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHETRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zsvd_64.out (COMPLEX16 Singular Value Decomposition)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEBRD_64 parameter number  1 had an illegal value
LAPACK_64.lin::ctest_64.out (COMPLEX Linear Equation routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGETRF_64 parameter number  1 had an illegal value
LAPACK_64.rfp::ctest_rfp_64.out (COMPLEX RFP linear equation routines)
Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CPFTRF_64 parameter number  1 had an illegal value
LAPACK.eig::ccsd.out (COMPLEX CS Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CUNCSD parameter number  7 had an illegal value
LAPACK.eig::cec.out (COMPLEX Eigen Condition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CTRSYL parameter number  1 had an illegal value
LAPACK.eig::cgd.out (COMPLEX Nonsymmetric Generalized Eigenvalue Problem driver)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGES parameter number  1 had an illegal value
LAPACK.eig::cgg.out (COMPLEX Nonsymmetric Generalized Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGHRD parameter number  1 had an illegal value
LAPACK.eig::cglm.out (COMPLEX Generalized Linear Regression Model routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGGLM parameter number  1 had an illegal value
LAPACK.eig::cgqr.out (COMPLEX Generalized QR and RQ factorization routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGQRF parameter number  1 had an illegal value
LAPACK.eig::cgsv.out (COMPLEX Generalized Singular Value Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGSVD3 parameter number  1 had an illegal value
LAPACK.eig::clse.out (COMPLEX Constrained Linear Least Squares routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGLSE parameter number  1 had an illegal value
LAPACK.eig::cnep.out (COMPLEX Nonsymmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEBAL parameter number  1 had an illegal value
LAPACK.eig::csb.out (COMPLEX Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHBTRD parameter number  1 had an illegal value
LAPACK.eig::cse2.out (COMPLEX Symmetric Eigenvalue Problem 2-stage)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHETRD parameter number  1 had an illegal value
LAPACK.eig::csep.out (COMPLEX Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHETRD parameter number  1 had an illegal value
LAPACK.eig::csvd.out (COMPLEX Singular Value Decomposition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEBRD parameter number  1 had an illegal value
LAPACK.eig::dcsd.out (DOUBLE PRECISION CS Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DORCSD parameter number  7 had an illegal value
LAPACK.eig::dec.out (DOUBLE PRECISION Eigen Condition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DTRSYL parameter number  1 had an illegal value
LAPACK.eig::ded.out (DOUBLE PRECISION Nonsymmetric Eigenvalue)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEEV parameter number  1 had an illegal value
LAPACK.eig::dgd.out (DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem driver)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGES parameter number  1 had an illegal value
LAPACK.eig::dgg.out (DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGHRD parameter number  1 had an illegal value
LAPACK.eig::dglm.out (DOUBLE PRECISION Generalized Linear Regression Model routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGGLM parameter number  1 had an illegal value
LAPACK.eig::dgqr.out (DOUBLE PRECISION Generalized QR and RQ factorization routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGQRF parameter number  1 had an illegal value
LAPACK.eig::dgsv.out (DOUBLE PRECISION Generalized Singular Value Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGSVD3 parameter number  1 had an illegal value
LAPACK.eig::dlse.out (DOUBLE PRECISION Constrained Linear Least Squares routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGLSE parameter number  1 had an illegal value
LAPACK.eig::dnep.out (DOUBLE PRECISION Nonsymmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEBAL parameter number  1 had an illegal value
LAPACK.eig::dsb.out (DOUBLE PRECISION Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSBTRD parameter number  1 had an illegal value
LAPACK.eig::dse2.out (DOUBLE PRECISION Symmetric Eigenvalue Problem 2-stage)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSYTRD parameter number  1 had an illegal value
LAPACK.eig::dsep.out (DOUBLE PRECISION Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSYTRD parameter number  1 had an illegal value
LAPACK.eig::dsvd.out (DOUBLE PRECISION Singular Value Decomposition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEBRD parameter number  1 had an illegal value
LAPACK.eig::scsd.out (REAL CS Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SORCSD parameter number  7 had an illegal value
LAPACK.eig::sec.out (REAL Eigen Condition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to STRSYL parameter number  1 had an illegal value
LAPACK.eig::sed.out (REAL Nonsymmetric Eigenvalue)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEEV parameter number  1 had an illegal value
LAPACK.eig::sgd.out (REAL Nonsymmetric Generalized Eigenvalue Problem driver)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGES parameter number  1 had an illegal value
LAPACK.eig::sgg.out (REAL Nonsymmetric Generalized Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGHRD parameter number  1 had an illegal value
LAPACK.eig::sglm.out (REAL Generalized Linear Regression Model routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGGLM parameter number  1 had an illegal value
LAPACK.eig::sgqr.out (REAL Generalized QR and RQ factorization routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGQRF parameter number  1 had an illegal value
LAPACK.eig::sgsv.out (REAL Generalized Singular Value Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGSVD3 parameter number  1 had an illegal value
LAPACK.eig::slse.out (REAL Constrained Linear Least Squares routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGLSE parameter number  1 had an illegal value
LAPACK.eig::ssb.out (REAL Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSBTRD parameter number  1 had an illegal value
LAPACK.eig::sse2.out (REAL Symmetric Eigenvalue Problem 2-stage)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSYTRD parameter number  1 had an illegal value
LAPACK.eig::ssep.out (REAL Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSYTRD parameter number  1 had an illegal value
LAPACK.eig::ssvd.out (REAL Singular Value Decomposition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEBRD parameter number  1 had an illegal value
LAPACK.eig::zcsd.out (COMPLEX16 CS Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZUNCSD parameter number  7 had an illegal value
LAPACK.eig::zec.out (COMPLEX16 Eigen Condition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZTRSYL parameter number  1 had an illegal value
LAPACK.eig::zgd.out (COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem driver)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGES parameter number  1 had an illegal value
LAPACK.eig::zgg.out (COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGHRD parameter number  1 had an illegal value
LAPACK.eig::zglm.out (COMPLEX16 Generalized Linear Regression Model routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGGLM parameter number  1 had an illegal value
LAPACK.eig::zgqr.out (COMPLEX16 Generalized QR and RQ factorization routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGQRF parameter number  1 had an illegal value
LAPACK.eig::zgsv.out (COMPLEX16 Generalized Singular Value Decomposition routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGSVD3 parameter number  1 had an illegal value
LAPACK.eig::zlse.out (COMPLEX16 Constrained Linear Least Squares routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGLSE parameter number  1 had an illegal value
LAPACK.eig::znep.out (COMPLEX16 Nonsymmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEBAL parameter number  1 had an illegal value
LAPACK.eig::zsb.out (COMPLEX16 Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHBTRD parameter number  1 had an illegal value
LAPACK.eig::zse2.out (COMPLEX16 Symmetric Eigenvalue Problem 2-stage)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHETRD parameter number  1 had an illegal value
LAPACK.eig::zsep.out (COMPLEX16 Symmetric Eigenvalue Problem)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZHETRD parameter number  1 had an illegal value
LAPACK.eig::zsvd.out (COMPLEX16 Singular Value Decomposition)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEBRD parameter number  1 had an illegal value
LAPACK.lin::ctest.out (COMPLEX Linear Equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGETRF parameter number  1 had an illegal value
LAPACK.lin::dtest.out (DOUBLE PRECISION Linear Equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGETRF parameter number  1 had an illegal value
LAPACK.lin::stest.out (REAL Linear Equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGETRF parameter number  1 had an illegal value
LAPACK.lin::ztest.out (COMPLEX16 Linear Equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGETRF parameter number  1 had an illegal value
LAPACK.mixed::dstest.out (DOUBLE PRECISION Mixed Precision linear equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSGESV parameter number  1 had an illegal value
LAPACK.mixed::zctest.out (COMPLEX16 Mixed Precision linear equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZCGESV parameter number  1 had an illegal value
LAPACK.rfp::ctest_rfp.out (COMPLEX RFP linear equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CPFTRF parameter number  1 had an illegal value
LAPACK.rfp::dtest_rfp.out (DOUBLE PRECISION RFP linear equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DPFTRF parameter number  1 had an illegal value
LAPACK.rfp::ztest_rfp.out (COMPLEX16 RFP linear equation routines)
Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZPFTRF parameter number  1 had an illegal value
View the full list of 76 ❄️ flaky test(s)
BLAS.blas::dblat3.out (DOUBLE PRECISION Level 3 BLAS routines)

Flake rate in main: 19.07% (Passed 1689 times, Failed 398 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS.blas::sblat2.out (REAL Level 2 BLAS routines)

Flake rate in main: 19.96% (Passed 457 times, Failed 114 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::sblat2_64.out (REAL Level 2 BLAS routines)

Flake rate in main: 18.78% (Passed 493 times, Failed 114 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
BLAS_64.blas::sblat3_64.out (REAL Level 3 BLAS routines)

Flake rate in main: 18.97% (Passed 487 times, Failed 114 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::ctest2.out (COMPLEX C interface to Level 2 BLAS routines)

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::ctest3.out (COMPLEX C interface to Level 3 BLAS routines)

Flake rate in main: 10.00% (Passed 9 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::dtest2.out (DOUBLE PRECISION C interface to Level 2 BLAS routines)

Flake rate in main: 20.00% (Passed 4 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::stest2.out (REAL C interface to Level 2 BLAS routines)

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::stest3.out (REAL C interface to Level 3 BLAS routines)

Flake rate in main: 20.00% (Passed 4 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::ztest2.out (COMPLEX16 C interface to Level 2 BLAS routines)

Flake rate in main: 10.00% (Passed 9 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS.cblas::ztest3.out (COMPLEX16 C interface to Level 3 BLAS routines)

Flake rate in main: 10.00% (Passed 9 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::ctest2_64.out (COMPLEX C interface to Level 2 BLAS routines)

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::ctest3_64.out (COMPLEX C interface to Level 3 BLAS routines)

Flake rate in main: 14.29% (Passed 6 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::dtest3_64.out (DOUBLE PRECISION C interface to Level 3 BLAS routines)

Flake rate in main: 14.29% (Passed 6 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::stest2_64.out (REAL C interface to Level 2 BLAS routines)

Flake rate in main: 14.29% (Passed 6 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::stest3_64.out (REAL C interface to Level 3 BLAS routines)

Flake rate in main: 9.09% (Passed 10 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::ztest2_64.out (COMPLEX16 C interface to Level 2 BLAS routines)

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
CBLAS_64.cblas::ztest3_64.out (COMPLEX16 C interface to Level 3 BLAS routines)

Flake rate in main: 14.29% (Passed 6 times, Failed 1 times)

Stack Traces | 0s run time
1 other error(s) (illegal: 0, info: 1), 0 test(s) run
output ends without 'END OF TESTS': the driver did not finish
LAPACK.eig::ced.out (COMPLEX Nonsymmetric Eigenvalue)

Flake rate in main: 39.89% (Passed 2238 times, Failed 1485 times)

Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEES parameter number  1 had an illegal value
LAPACK.eig::snep.out (REAL Nonsymmetric Eigenvalue Problem)

Flake rate in main: 30.56% (Passed 2583 times, Failed 1137 times)

Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEBAL parameter number  1 had an illegal value
LAPACK.eig::zed.out (COMPLEX16 Nonsymmetric Eigenvalue)

Flake rate in main: 39.89% (Passed 2238 times, Failed 1485 times)

Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEES parameter number  1 had an illegal value
LAPACK.rfp::stest_rfp.out (REAL RFP linear equation routines)

Flake rate in main: 29.23% (Passed 2625 times, Failed 1084 times)

Stack Traces | 41s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SPFTRF parameter number  1 had an illegal value
LAPACKE.lapacke::ctest_work_cm.out (COMPLEX Linear Equation routines via the column-major work-level API)

Flake rate in main: 22.90% (Passed 458 times, Failed 136 times)

Stack Traces | 194s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGETRF parameter number  1 had an illegal value
LAPACKE.lapacke::dtest_work_cm.out (DOUBLE PRECISION Linear Equation routines via the column-major work-level API)

Flake rate in main: 22.90% (Passed 458 times, Failed 136 times)

Stack Traces | 194s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGETRF parameter number  1 had an illegal value
LAPACKE.lapacke::stest_work_cm.out (REAL Linear Equation routines via the column-major work-level API)

Flake rate in main: 22.90% (Passed 458 times, Failed 136 times)

Stack Traces | 194s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGETRF parameter number  1 had an illegal value
LAPACKE.lapacke::ztest_work_cm.out (COMPLEX16 Linear Equation routines via the column-major work-level API)

Flake rate in main: 22.90% (Passed 458 times, Failed 136 times)

Stack Traces | 194s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGETRF parameter number  1 had an illegal value
LAPACKE_64.lapacke::ctest_work_cm_64.out (COMPLEX Linear Equation routines via the column-major work-level API)

Flake rate in main: 21.52% (Passed 496 times, Failed 136 times)

Stack Traces | 203s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGETRF_64 parameter number  1 had an illegal value
LAPACKE_64.lapacke::dtest_work_cm_64.out (DOUBLE PRECISION Linear Equation routines via the column-major work-level API)

Flake rate in main: 21.52% (Passed 496 times, Failed 136 times)

Stack Traces | 203s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGETRF_64 parameter number  1 had an illegal value
LAPACKE_64.lapacke::stest_work_cm_64.out (REAL Linear Equation routines via the column-major work-level API)

Flake rate in main: 21.52% (Passed 496 times, Failed 136 times)

Stack Traces | 203s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGETRF_64 parameter number  1 had an illegal value
LAPACKE_64.lapacke::ztest_work_cm_64.out (COMPLEX16 Linear Equation routines via the column-major work-level API)

Flake rate in main: 21.52% (Passed 496 times, Failed 136 times)

Stack Traces | 203s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGETRF_64 parameter number  1 had an illegal value
LAPACK_64.eig::ccsd_64.out (COMPLEX CS Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CUNCSD_64 parameter number  7 had an illegal value
LAPACK_64.eig::cec_64.out (COMPLEX Eigen Condition)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CTRSYL_64 parameter number  1 had an illegal value
LAPACK_64.eig::ced_64.out (COMPLEX Nonsymmetric Eigenvalue)

Flake rate in main: 37.54% (Passed 2471 times, Failed 1485 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEES_64 parameter number  1 had an illegal value
LAPACK_64.eig::cgd_64.out (COMPLEX Nonsymmetric Generalized Eigenvalue Problem driver)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGES_64 parameter number  1 had an illegal value
LAPACK_64.eig::cgg_64.out (COMPLEX Nonsymmetric Generalized Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGHRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::cglm_64.out (COMPLEX Generalized Linear Regression Model routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGGLM_64 parameter number  1 had an illegal value
LAPACK_64.eig::cgqr_64.out (COMPLEX Generalized QR and RQ factorization routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGQRF_64 parameter number  1 had an illegal value
LAPACK_64.eig::cgsv_64.out (COMPLEX Generalized Singular Value Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGGSVD3_64 parameter number  1 had an illegal value
LAPACK_64.eig::csb_64.out (COMPLEX Symmetric Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHBTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::cse2_64.out (COMPLEX Symmetric Eigenvalue Problem 2-stage)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CHETRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::csvd_64.out (COMPLEX Singular Value Decomposition)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to CGEBRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::dcsd_64.out (DOUBLE PRECISION CS Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DORCSD_64 parameter number  7 had an illegal value
LAPACK_64.eig::dec_64.out (DOUBLE PRECISION Eigen Condition)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DTRSYL_64 parameter number  1 had an illegal value
LAPACK_64.eig::dgd_64.out (DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem driver)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGES_64 parameter number  1 had an illegal value
LAPACK_64.eig::dgg_64.out (DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGHRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::dglm_64.out (DOUBLE PRECISION Generalized Linear Regression Model routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGGLM_64 parameter number  1 had an illegal value
LAPACK_64.eig::dgqr_64.out (DOUBLE PRECISION Generalized QR and RQ factorization routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGQRF_64 parameter number  1 had an illegal value
LAPACK_64.eig::dgsv_64.out (DOUBLE PRECISION Generalized Singular Value Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGSVD3_64 parameter number  1 had an illegal value
LAPACK_64.eig::dlse_64.out (DOUBLE PRECISION Constrained Linear Least Squares routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGGLSE_64 parameter number  1 had an illegal value
LAPACK_64.eig::dnep_64.out (DOUBLE PRECISION Nonsymmetric Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEBAL_64 parameter number  1 had an illegal value
LAPACK_64.eig::dsb_64.out (DOUBLE PRECISION Symmetric Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSBTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::dse2_64.out (DOUBLE PRECISION Symmetric Eigenvalue Problem 2-stage)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSYTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::dsep_64.out (DOUBLE PRECISION Symmetric Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSYTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::dsvd_64.out (DOUBLE PRECISION Singular Value Decomposition)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGEBRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::scsd_64.out (REAL CS Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SORCSD_64 parameter number  7 had an illegal value
LAPACK_64.eig::sgd_64.out (REAL Nonsymmetric Generalized Eigenvalue Problem driver)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGES_64 parameter number  1 had an illegal value
LAPACK_64.eig::sgg_64.out (REAL Nonsymmetric Generalized Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGHRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::sglm_64.out (REAL Generalized Linear Regression Model routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGGLM_64 parameter number  1 had an illegal value
LAPACK_64.eig::sgqr_64.out (REAL Generalized QR and RQ factorization routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGQRF_64 parameter number  1 had an illegal value
LAPACK_64.eig::sgsv_64.out (REAL Generalized Singular Value Decomposition routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGGSVD3_64 parameter number  1 had an illegal value
LAPACK_64.eig::snep_64.out (REAL Nonsymmetric Eigenvalue Problem)

Flake rate in main: 28.79% (Passed 2812 times, Failed 1137 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGEBAL_64 parameter number  1 had an illegal value
LAPACK_64.eig::ssb_64.out (REAL Symmetric Eigenvalue Problem)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSBTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::sse2_64.out (REAL Symmetric Eigenvalue Problem 2-stage)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SSYTRD_64 parameter number  1 had an illegal value
LAPACK_64.eig::zcsd_64.out (COMPLEX16 CS Decomposition routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZUNCSD_64 parameter number  7 had an illegal value
LAPACK_64.eig::zed_64.out (COMPLEX16 Nonsymmetric Eigenvalue)

Flake rate in main: 37.54% (Passed 2471 times, Failed 1485 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEES_64 parameter number  1 had an illegal value
LAPACK_64.eig::zgsv_64.out (COMPLEX16 Generalized Singular Value Decomposition routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGSVD3_64 parameter number  1 had an illegal value
LAPACK_64.eig::zlse_64.out (COMPLEX16 Constrained Linear Least Squares routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGGLSE_64 parameter number  1 had an illegal value
LAPACK_64.eig::znep_64.out (COMPLEX16 Nonsymmetric Eigenvalue Problem)

Flake rate in main: 32.61% (Passed 2666 times, Failed 1290 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGEBAL_64 parameter number  1 had an illegal value
LAPACK_64.lin::dtest_64.out (DOUBLE PRECISION Linear Equation routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DGETRF_64 parameter number  1 had an illegal value
LAPACK_64.lin::stest_64.out (REAL Linear Equation routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SGETRF_64 parameter number  1 had an illegal value
LAPACK_64.lin::ztest_64.out (COMPLEX16 Linear Equation routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZGETRF_64 parameter number  1 had an illegal value
LAPACK_64.mixed::dstest_64.out (DOUBLE PRECISION Mixed Precision linear equation routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DSGESV_64 parameter number  1 had an illegal value
LAPACK_64.mixed::zctest_64.out (COMPLEX16 Mixed Precision linear equation routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZCGESV_64 parameter number  1 had an illegal value
LAPACK_64.rfp::dtest_rfp_64.out (DOUBLE PRECISION RFP linear equation routines)

Flake rate in main: 37.93% (Passed 36 times, Failed 22 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to DPFTRF_64 parameter number  1 had an illegal value
LAPACK_64.rfp::stest_rfp_64.out (REAL RFP linear equation routines)

Flake rate in main: 27.55% (Passed 2850 times, Failed 1084 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to SPFTRF_64 parameter number  1 had an illegal value
LAPACK_64.rfp::ztest_rfp_64.out (COMPLEX16 RFP linear equation routines)

Flake rate in main: 39.29% (Passed 68 times, Failed 44 times)

Stack Traces | 40.9s run time
1 other error(s) (illegal: 1, info: 0), 0 test(s) run
 ** On entry to ZPFTRF_64 parameter number  1 had an illegal value

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant