conda-forge / openblas-feedstock

A conda-smithy repository for openblas.
BSD 3-Clause "New" or "Revised" License
9 stars 38 forks source link

add 'make lapack-test' #122

Open h-vetinari opened 3 years ago

h-vetinari commented 3 years ago

Trying to debug https://github.com/conda-forge/blas-feedstock/pull/74

conda-forge-linter commented 3 years ago

Hi! This is the friendly automated conda-forge-linting service.

I just wanted to let you know that I linted all conda-recipes in your PR (recipe) and found it was in an excellent condition.

h-vetinari commented 3 years ago

@martin-frbg, I wanted to contribute to the debugging of https://github.com/xianyi/OpenBLAS/pull/3308 (now on the correct feedstock compared to https://github.com/conda-forge/blas-feedstock/pull/74), but it's perhaps the first time the lapack-test suite is being run here, and it seems to be picking up a separate problem.

Namely, even with https://github.com/xianyi/OpenBLAS/pull/3250 reverted (though the result is the same without reversion), I get a compilation during make lapack-test on OSX (interestingly, only for INTERFACE64=1):

$BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-gfortran -pthread -march=core2 -mtune=haswell -ftree-vectorize -fPIC -fstack-protector -O2 -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/openblas-0.3.16 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -frecursive -O2 -m128bit-long-double -Wall -frecursive -fno-optimize-sibling-calls -m64 -fdefault-integer-8 -fopenmp -fPIC -march=core2 -mtune=haswell -ftree-vectorize -fPIC -fstack-protector -O2 -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/openblas-0.3.16 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -frecursive -O2 -m128bit-long-double -Wall -frecursive -fno-optimize-sibling-calls -m64 -fdefault-integer-8 -fopenmp -fPIC -lpthread -lgfortran -lomp -o xeigtstc cchkee.o cbdt01.o cbdt02.o cbdt03.o cbdt05.o cchkbb.o cchkbd.o cchkbk.o cchkbl.o cchkec.o cchkgg.o cchkgk.o cchkgl.o cchkhb.o cchkhs.o cchkst.o cchkst2stg.o cchkhb2stg.o cckcsd.o cckglm.o cckgqr.o cckgsv.o ccklse.o ccsdts.o cdrges.o cdrgev.o cdrges3.o cdrgev3.o cdrgsx.o cdrgvx.o cdrvbd.o cdrves.o cdrvev.o cdrvsg.o cdrvsg2stg.o cdrvst.o cdrvst2stg.o cdrvsx.o cdrvvx.o cerrbd.o cerrec.o cerred.o cerrgg.o cerrhs.o cerrst.o cget02.o cget10.o cget22.o cget23.o cget24.o cget35.o cget36.o cget37.o cget38.o cget51.o cget52.o cget54.o cglmts.o cgqrts.o cgrqts.o cgsvts3.o chbt21.o chet21.o chet22.o chpt21.o chst01.o clarfy.o clarhs.o clatm4.o clctes.o clctsx.o clsets.o csbmv.o csgt01.o cslect.o cstt21.o cstt22.o cunt01.o cunt03.o slafts.o slahd2.o slasum.o slatb9.o sstech.o sstect.o ssvdch.o ssvdct.o ssxt1.o alahdg.o alasum.o alasvm.o alareq.o ilaenv.o xerbla.o xlaenv.o chkxer.o ../../../libopenblas64_p-r0.3.16.a
Undefined symbols for architecture x86_64:
  "_omp_set_num_threads_8_", referenced from:
      _MAIN__ in cchkee.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:134: xeigtstc] Error 1
make[1]: Leaving directory '$SRC_DIR/lapack-netlib/TESTING/EIG'
make: *** [Makefile:355: lapack-test] Error 2
martin-frbg commented 3 years ago

That is a different problem - it is lacking the information that it needs to link against OpenMP. Please try repeating the build options on the make lapack-test line, i.e. something like make USE_OPENMP=1 INTERFACE64=1 lapack-test

h-vetinari commented 3 years ago

That still kinda didn't work, but maybe I'm doing something wrong.

martin-frbg commented 3 years ago

Hm, strange. Could it be that this symbol is not present in the Apple/LLVM OpenMP library ? LAPACK tests actively setting the number of threads they want to run with is a new feature from 3.9.x, and I think the _8 version is the fortran wrapper for a long argument.

h-vetinari commented 3 years ago

I think the _8 version is the fortran wrapper for a long argument.

Not sure if I'm reading this correctly, but it seems LLVM openmp only has an int version: https://github.com/llvm/llvm-project/blob/llvmorg-12.0.1/openmp/runtime/src/include/omp.h.var#L57

martin-frbg commented 3 years ago

Then it is probably the combination of -fdefault-interface-8 for gfortran and LLVM openmp. I'll do a test build with Reference-LAPACK to make sure it happens there as well.

h-vetinari commented 3 years ago

@martin-frbg, I saw https://github.com/xianyi/OpenBLAS/pull/3311 & https://github.com/xianyi/OpenBLAS/pull/3312 - thanks! - which I could carry as patches here. ~Are you planning to pick up the changes for from https://github.com/Reference-LAPACK/lapack/pull/597 for openblas as well? Otherwise I cannot really add the lapack-tests to the CI here.~ Nevermind, saw https://github.com/xianyi/OpenBLAS/pull/3314, cool!

martin-frbg commented 3 years ago

Have not merged that yet as I am still trying to reproduce the problem - on Azure, a build with USE_OPENMP and INTERFACE64 compiles and links just fine with gfortran-10 and Apple clang 12 from xcode 12.4 but I have not established which flavor of libomp it is linking against ( need to find out what's the equivalent of ldd on OSX)

isuruf commented 3 years ago

( need to find out what's the equivalent of ldd on OSX)

otool -L

h-vetinari commented 3 years ago

@isuruf I haven't added the make lapack-test to the windows builds, because I'm not sure exactly how to talk to make through cmake. Would something like this work?

diff --git a/recipe/bld.bat b/recipe/bld.bat
index 823c08c..2707e54 100644
--- a/recipe/bld.bat
+++ b/recipe/bld.bat
@@ -16,3 +16,17 @@ cmake -G "NMake Makefiles JOM"              ^
 jom install -j%CPU_COUNT%

 utest\openblas_utest.exe
+
+cmake -G "NMake Makefiles JOM"              ^
+    -DCMAKE_C_COMPILER=clang-cl             ^
+    -DCMAKE_Fortran_COMPILER=flang          ^
+    -DCMAKE_BUILD_TYPE=Release              ^
+    -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
+    -DDYNAMIC_ARCH=ON                       ^
+    -DBUILD_WITHOUT_LAPACK=no               ^
+    -DNOFORTRAN=0                           ^
+    -DNUM_THREADS=128                       ^
+    -DBUILD_SHARED_LIBS=on                  ^
+    %SRC_DIR% lapack-test
+
+jom install -j%CPU_COUNT%
+
+lapack_test\openblas_lapack_test.exe

(copied from here and just adding lapack-test; not sure whether this actually needs the jom install resp. how to know in advance what the .exe will be called)

martin-frbg commented 3 years ago

I think the lapack testsuite should get built automatically when using cmake (though Reference-LAPACK has an extra option BUILD_TESTING for that), the testsuite should run with the other tests when ctest is invoked

h-vetinari commented 3 years ago

Interestingly, the missing symbol problem does not go away with (the current state of) https://github.com/xianyi/OpenBLAS/pull/3314

isuruf commented 3 years ago

Try the following patch.

diff --git a/lapack-netlib/lapack-netlib/TESTING/EIG/cchkee.F b/lapack-netlib/TESTING/EIG/cchkee.F
index 1595a3d1f..7c6f58087 100644
--- a/lapack-netlib/lapack-netlib/TESTING/EIG/cchkee.F
+++ b/lapack-netlib/TESTING/EIG/cchkee.F
@@ -1073,7 +1073,7 @@
       INTEGER            I, I1, IC, INFO, ITMP, K, LENP, MAXTYP, NEWSD,
      $                   NK, NN, NPARMS, NRHS, NTYPES,
      $                   VERS_MAJOR, VERS_MINOR, VERS_PATCH
-      INTEGER*4          N_THREADS
+      INTEGER*4          N_THREADS, ONE_THREAD
       REAL               EPS, S1, S2, THRESH, THRSHN
 *     ..
 *     .. Local Arrays ..
@@ -1870,7 +1870,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL CERRST( 'CST', NOUT )
 #if defined(_OPENMP)
@@ -2337,7 +2338,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL CERRST( 'CHB', NOUT )
 #if defined(_OPENMP)
diff --git a/lapack-netlib/lapack-netlib/TESTING/EIG/dchkee.F b/lapack-netlib/TESTING/EIG/dchkee.F
index 3c40b30b3..2b8e0b371 100644
--- a/lapack-netlib/lapack-netlib/TESTING/EIG/dchkee.F
+++ b/lapack-netlib/TESTING/EIG/dchkee.F
@@ -1079,7 +1079,7 @@
       INTEGER            I, I1, IC, INFO, ITMP, K, LENP, MAXTYP, NEWSD,
      $                   NK, NN, NPARMS, NRHS, NTYPES,
      $                   VERS_MAJOR, VERS_MINOR, VERS_PATCH
-      INTEGER*4          N_THREADS
+      INTEGER*4          N_THREADS, ONE_THREAD
       DOUBLE PRECISION   EPS, S1, S2, THRESH, THRSHN
 *     ..
 *     .. Local Arrays ..
@@ -1875,7 +1875,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL DERRST( 'DST', NOUT )
 #if defined(_OPENMP)
diff --git a/lapack-netlib/lapack-netlib/TESTING/EIG/schkee.F b/lapack-netlib/TESTING/EIG/schkee.F
index 70c54727d..bf04b5e5b 100644
--- a/lapack-netlib/lapack-netlib/TESTING/EIG/schkee.F
+++ b/lapack-netlib/TESTING/EIG/schkee.F
@@ -1079,7 +1079,7 @@
       INTEGER            I, I1, IC, INFO, ITMP, K, LENP, MAXTYP, NEWSD,
      $                   NK, NN, NPARMS, NRHS, NTYPES,
      $                   VERS_MAJOR, VERS_MINOR, VERS_PATCH
-      INTEGER*4          N_THREADS
+      INTEGER*4          N_THREADS, ONE_THREAD
       REAL               EPS, S1, S2, THRESH, THRSHN
 *     ..
 *     .. Local Arrays ..
@@ -1876,7 +1876,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL SERRST( 'SST', NOUT )
 #if defined(_OPENMP)
diff --git a/lapack-netlib/lapack-netlib/TESTING/EIG/zchkee.F b/lapack-netlib/TESTING/EIG/zchkee.F
index de36cba33..b14127553 100644
--- a/lapack-netlib/lapack-netlib/TESTING/EIG/zchkee.F
+++ b/lapack-netlib/TESTING/EIG/zchkee.F
@@ -1073,7 +1073,7 @@
       INTEGER            I, I1, IC, INFO, ITMP, K, LENP, MAXTYP, NEWSD,
      $                   NK, NN, NPARMS, NRHS, NTYPES,
      $                   VERS_MAJOR, VERS_MINOR, VERS_PATCH
-      INTEGER*4          N_THREADS
+      INTEGER*4          N_THREADS, ONE_THREAD
       DOUBLE PRECISION   EPS, S1, S2, THRESH, THRSHN
 *     ..
 *     .. Local Arrays ..
@@ -1870,7 +1870,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL ZERRST( 'ZST', NOUT )
 #if defined(_OPENMP)
@@ -2335,7 +2336,8 @@
          IF( TSTERR ) THEN
 #if defined(_OPENMP)
             N_THREADS = OMP_GET_MAX_THREADS()
-            CALL OMP_SET_NUM_THREADS(1)
+            ONE_THREAD = 1
+            CALL OMP_SET_NUM_THREADS(ONE_THREAD)
 #endif
             CALL ZERRST( 'ZHB', NOUT )
 #if defined(_OPENMP)
h-vetinari commented 3 years ago

I had looked at where this might be coming from, but hadn't thought that 1 might be INTEGER by default. Good catch!

h-vetinari commented 3 years ago

with xianyi/OpenBLAS#3311, xianyi/OpenBLAS#3312 & xianyi/OpenBLAS#3314 & Isuru's patch (will you update Reference-LAPACK/lapack#597?), this now runs through.

@martin-frbg, are you considering a bugfix release? Otherwise I don't mind carrying patches on the feedstock here for the time being.

martin-frbg commented 3 years ago

I'm not sure if it actually ran through successfully, thought I saw a number of weird "OMP Error 178: Function sem_post failed" in the testsuite output, probably whenever the set_num_threads was in use ? (BTW my test worked simply because it found and linked both libgomp and libomp - something I try to avoid, but seems inevitably implied by gfortran's -fopenmp) I do not think I have a choice regarding a quick 0.3.17 (but probably without this LAPACK OpenMP thing) unless I wanted to watch everything from NumPy to GIMP blowing up :frowning_face:

h-vetinari commented 3 years ago

I'm not sure if it actually ran through successfully, thought I saw a number of weird "OMP Error 178: Function sem_post failed" in the testsuite output, probably whenever the set_num_threads was in use?

You're right, I had overlooked that. Actually, even with set -e, this ran through, so I'm guessing the errors are not being reacted to correctly on the makefile-side?

            -->   LAPACK TESTING SUMMARY  <--
SUMMARY                 nb test run     numerical error     other error  
================    =========== =================   ================  
REAL                1174263     2   (0.000%)    0   (0.000%)    
DOUBLE PRECISION    1227437     0   (0.000%)    0   (0.000%)    
COMPLEX             694951      1   (0.000%)    0   (0.000%)    
COMPLEX16           696320      2   (0.000%)    0   (0.000%)    

--> ALL PRECISIONS  3792971     5   (0.000%)    0   (0.000%)    

I do not think I have a choice regarding a quick 0.3.17 (but probably without this LAPACK OpenMP thing) unless I wanted to watch everything from NumPy to GIMP blowing up ☹️

thanks for the quick handling of all this! 😊

h-vetinari commented 3 years ago

@isuruf, any idea how to fix the current "OMP Error 178: Function sem_post failed"? I'm a bit stumped here, but would like to help unblock this (and the new blas builds...)

h-vetinari commented 2 years ago

the osx thing should be gone with https://github.com/conda-forge/openmp-feedstock/pull/51, but that still leaves the windows failure. Should we merge this PR (after clean-up) just for linxu/osx?

h-vetinari commented 2 years ago

@martin-frbg, this runs into https://github.com/xianyi/OpenBLAS/issues/3406 (though there are comparatively few failures on osx, and only 1 on linux), but on windows, the situation looks a bit worse:

93% tests passed, 8 tests failed out of 115

Total Test time (real) = 667.65 sec

The following tests FAILED:
          3 - sblas2 (Failed)
          4 - sblas3 (Failed)
          6 - dblas2 (Failed)
          7 - dblas3 (Failed)
Errors while running CTest
          9 - cblas2 (Failed)
         10 - cblas3 (Failed)
         12 - zblas2 (Failed)
         13 - zblas3 (Failed)

Any thoughts about this...?

Detailed log ``` Start 1: openblas_utest 1/115 Test #1: openblas_utest .............................................................................. Passed 0.02 sec Start 2: sblas1 2/115 Test #2: sblas1 ...................................................................................... Passed 0.13 sec Start 3: sblas2 3/115 Test #3: sblas2 ......................................................................................***Failed 6.95 sec ** On entry to SGEMV parameter number 1 had an illegal value ** On entry to SGEMV parameter number 2 had an illegal value ** On entry to SGEMV parameter number 3 had an illegal value ** On entry to SGEMV parameter number 6 had an illegal value ** On entry to SGEMV parameter number 8 had an illegal value ** On entry to SGEMV parameter number 11 had an illegal value ** On entry to SGBMV parameter number 1 had an illegal value ** On entry to SGBMV parameter number 2 had an illegal value ** On entry to SGBMV parameter number 3 had an illegal value ** On entry to SGBMV parameter number 4 had an illegal value ** On entry to SGBMV parameter number 5 had an illegal value ** On entry to SGBMV parameter number 8 had an illegal value ** On entry to SGBMV parameter number 10 had an illegal value ** On entry to SGBMV parameter number 13 had an illegal value ** On entry to SSYMV parameter number 1 had an illegal value ** On entry to SSYMV parameter number 2 had an illegal value ** On entry to SSYMV parameter number 5 had an illegal value ** On entry to SSYMV parameter number 7 had an illegal value ** On entry to SSYMV parameter number 10 had an illegal value ** On entry to SSBMV parameter number 1 had an illegal value ** On entry to SSBMV parameter number 2 had an illegal value ** On entry to SSBMV parameter number 3 had an illegal value ** On entry to SSBMV parameter number 6 had an illegal value ** On entry to SSBMV parameter number 8 had an illegal value ** On entry to SSBMV parameter number 11 had an illegal value ** On entry to SSPMV parameter number 1 had an illegal value ** On entry to SSPMV parameter number 2 had an illegal value ** On entry to SSPMV parameter number 6 had an illegal value ** On entry to SSPMV parameter number 9 had an illegal value ** On entry to STRMV parameter number 1 had an illegal value ** On entry to STRMV parameter number 2 had an illegal value ** On entry to STRMV parameter number 3 had an illegal value ** On entry to STRMV parameter number 4 had an illegal value ** On entry to STRMV parameter number 6 had an illegal value ** On entry to STRMV parameter number 8 had an illegal value ** On entry to STBMV parameter number 1 had an illegal value ** On entry to STBMV parameter number 2 had an illegal value ** On entry to STBMV parameter number 3 had an illegal value ** On entry to STBMV parameter number 4 had an illegal value ** On entry to STBMV parameter number 5 had an illegal value ** On entry to STBMV parameter number 7 had an illegal value ** On entry to STBMV parameter number 9 had an illegal value ** On entry to STPMV parameter number 1 had an illegal value ** On entry to STPMV parameter number 2 had an illegal value ** On entry to STPMV parameter number 3 had an illegal value ** On entry to STPMV parameter number 4 had an illegal value ** On entry to STPMV parameter number 7 had an illegal value ** On entry to STRSV parameter number 1 had an illegal value ** On entry to STRSV parameter number 2 had an illegal value ** On entry to STRSV parameter number 3 had an illegal value ** On entry to STRSV parameter number 4 had an illegal value ** On entry to STRSV parameter number 6 had an illegal value ** On entry to STRSV parameter number 8 had an illegal value ** On entry to STBSV parameter number 1 had an illegal value ** On entry to STBSV parameter number 2 had an illegal value ** On entry to STBSV parameter number 3 had an illegal value ** On entry to STBSV parameter number 4 had an illegal value ** On entry to STBSV parameter number 5 had an illegal value ** On entry to STBSV parameter number 7 had an illegal value ** On entry to STBSV parameter number 9 had an illegal value ** On entry to STPSV parameter number 1 had an illegal value ** On entry to STPSV parameter number 2 had an illegal value ** On entry to STPSV parameter number 3 had an illegal value ** On entry to STPSV parameter number 4 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to STPSV parameter number 7 had an illegal value ** On entry to SGER parameter number 1 had an illegal value ** On entry to SGER parameter number 2 had an illegal value ** On entry to SGER parameter number 5 had an illegal value ** On entry to SGER parameter number 7 had an illegal value ** On entry to SGER parameter number 9 had an illegal value ** On entry to SSYR parameter number 1 had an illegal value ** On entry to SSYR parameter number 2 had an illegal value ** On entry to SSYR parameter number 5 had an illegal value ** On entry to SSYR parameter number 7 had an illegal value ** On entry to SSPR parameter number 1 had an illegal value ** On entry to SSPR parameter number 2 had an illegal value ** On entry to SSPR parameter number 5 had an illegal value ** On entry to SSYR2 parameter number 1 had an illegal value ** On entry to SSYR2 parameter number 2 had an illegal value ** On entry to SSYR2 parameter number 5 had an illegal value ** On entry to SSYR2 parameter number 7 had an illegal value ** On entry to SSYR2 parameter number 9 had an illegal value ** On entry to SSPR2 parameter number 1 had an illegal value ** On entry to SSPR2 parameter number 2 had an illegal value ** On entry to SSPR2 parameter number 5 had an illegal value ** On entry to SSPR2 parameter number 7 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\SBLAT2.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\SBLAT2.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 4: sblas3 4/115 Test #4: sblas3 ......................................................................................***Failed 3.67 sec ** On entry to SGEMM parameter number 1 had an illegal value ** On entry to SGEMM parameter number 1 had an illegal value ** On entry to SGEMM parameter number 2 had an illegal value ** On entry to SGEMM parameter number 2 had an illegal value ** On entry to SGEMM parameter number 3 had an illegal value ** On entry to SGEMM parameter number 3 had an illegal value ** On entry to SGEMM parameter number 3 had an illegal value ** On entry to SGEMM parameter number 3 had an illegal value ** On entry to SGEMM parameter number 4 had an illegal value ** On entry to SGEMM parameter number 4 had an illegal value ** On entry to SGEMM parameter number 4 had an illegal value ** On entry to SGEMM parameter number 4 had an illegal value ** On entry to SGEMM parameter number 5 had an illegal value ** On entry to SGEMM parameter number 5 had an illegal value ** On entry to SGEMM parameter number 5 had an illegal value ** On entry to SGEMM parameter number 5 had an illegal value ** On entry to SGEMM parameter number 8 had an illegal value ** On entry to SGEMM parameter number 8 had an illegal value ** On entry to SGEMM parameter number 8 had an illegal value ** On entry to SGEMM parameter number 8 had an illegal value ** On entry to SGEMM parameter number 10 had an illegal value ** On entry to SGEMM parameter number 10 had an illegal value ** On entry to SGEMM parameter number 10 had an illegal value ** On entry to SGEMM parameter number 10 had an illegal value ** On entry to SGEMM parameter number 13 had an illegal value ** On entry to SGEMM parameter number 13 had an illegal value ** On entry to SGEMM parameter number 13 had an illegal value ** On entry to SGEMM parameter number 13 had an illegal value ** On entry to SSYMM parameter number 1 had an illegal value ** On entry to SSYMM parameter number 2 had an illegal value ** On entry to SSYMM parameter number 3 had an illegal value ** On entry to SSYMM parameter number 3 had an illegal value ** On entry to SSYMM parameter number 3 had an illegal value ** On entry to SSYMM parameter number 3 had an illegal value ** On entry to SSYMM parameter number 4 had an illegal value ** On entry to SSYMM parameter number 4 had an illegal value ** On entry to SSYMM parameter number 4 had an illegal value ** On entry to SSYMM parameter number 4 had an illegal value ** On entry to SSYMM parameter number 7 had an illegal value ** On entry to SSYMM parameter number 7 had an illegal value ** On entry to SSYMM parameter number 7 had an illegal value ** On entry to SSYMM parameter number 7 had an illegal value ** On entry to SSYMM parameter number 9 had an illegal value ** On entry to SSYMM parameter number 9 had an illegal value ** On entry to SSYMM parameter number 9 had an illegal value ** On entry to SSYMM parameter number 9 had an illegal value ** On entry to SSYMM parameter number 12 had an illegal value ** On entry to SSYMM parameter number 12 had an illegal value ** On entry to SSYMM parameter number 12 had an illegal value ** On entry to SSYMM parameter number 12 had an illegal value ** On entry to STRMM parameter number 1 had an illegal value ** On entry to STRMM parameter number 2 had an illegal value ** On entry to STRMM parameter number 3 had an illegal value ** On entry to STRMM parameter number 4 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 5 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 6 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 9 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRMM parameter number 11 had an illegal value ** On entry to STRSM parameter number 1 had an illegal value ** On entry to STRSM parameter number 2 had an illegal value ** On entry to STRSM parameter number 3 had an illegal value ** On entry to STRSM parameter number 4 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 5 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 6 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 9 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to STRSM parameter number 11 had an illegal value ** On entry to SSYRK parameter number 1 had an illegal value ** On entry to SSYRK parameter number 2 had an illegal value ** On entry to SSYRK parameter number 3 had an illegal value ** On entry to SSYRK parameter number 3 had an illegal value ** On entry to SSYRK parameter number 3 had an illegal value ** On entry to SSYRK parameter number 3 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to SSYRK parameter number 4 had an illegal value ** On entry to SSYRK parameter number 4 had an illegal value ** On entry to SSYRK parameter number 4 had an illegal value ** On entry to SSYRK parameter number 4 had an illegal value ** On entry to SSYRK parameter number 7 had an illegal value ** On entry to SSYRK parameter number 7 had an illegal value ** On entry to SSYRK parameter number 7 had an illegal value ** On entry to SSYRK parameter number 7 had an illegal value ** On entry to SSYRK parameter number 10 had an illegal value ** On entry to SSYRK parameter number 10 had an illegal value ** On entry to SSYRK parameter number 10 had an illegal value ** On entry to SSYRK parameter number 10 had an illegal value ** On entry to SSYR2K parameter number 1 had an illegal value ** On entry to SSYR2K parameter number 2 had an illegal value ** On entry to SSYR2K parameter number 3 had an illegal value ** On entry to SSYR2K parameter number 3 had an illegal value ** On entry to SSYR2K parameter number 3 had an illegal value ** On entry to SSYR2K parameter number 3 had an illegal value ** On entry to SSYR2K parameter number 4 had an illegal value ** On entry to SSYR2K parameter number 4 had an illegal value ** On entry to SSYR2K parameter number 4 had an illegal value ** On entry to SSYR2K parameter number 4 had an illegal value ** On entry to SSYR2K parameter number 7 had an illegal value ** On entry to SSYR2K parameter number 7 had an illegal value ** On entry to SSYR2K parameter number 7 had an illegal value ** On entry to SSYR2K parameter number 7 had an illegal value ** On entry to SSYR2K parameter number 9 had an illegal value ** On entry to SSYR2K parameter number 9 had an illegal value ** On entry to SSYR2K parameter number 9 had an illegal value ** On entry to SSYR2K parameter number 9 had an illegal value ** On entry to SSYR2K parameter number 12 had an illegal value ** On entry to SSYR2K parameter number 12 had an illegal value ** On entry to SSYR2K parameter number 12 had an illegal value ** On entry to SSYR2K parameter number 12 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\SBLAT3.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\SBLAT3.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 5: dblas1 5/115 Test #5: dblas1 ...................................................................................... Passed 0.03 sec Start 6: dblas2 6/115 Test #6: dblas2 ......................................................................................***Failed 6.29 sec ** On entry to DGEMV parameter number 1 had an illegal value ** On entry to DGEMV parameter number 2 had an illegal value ** On entry to DGEMV parameter number 3 had an illegal value ** On entry to DGEMV parameter number 6 had an illegal value ** On entry to DGEMV parameter number 8 had an illegal value ** On entry to DGEMV parameter number 11 had an illegal value ** On entry to DGBMV parameter number 1 had an illegal value ** On entry to DGBMV parameter number 2 had an illegal value ** On entry to DGBMV parameter number 3 had an illegal value ** On entry to DGBMV parameter number 4 had an illegal value ** On entry to DGBMV parameter number 5 had an illegal value ** On entry to DGBMV parameter number 8 had an illegal value ** On entry to DGBMV parameter number 10 had an illegal value ** On entry to DGBMV parameter number 13 had an illegal value ** On entry to DSYMV parameter number 1 had an illegal value ** On entry to DSYMV parameter number 2 had an illegal value ** On entry to DSYMV parameter number 5 had an illegal value ** On entry to DSYMV parameter number 7 had an illegal value ** On entry to DSYMV parameter number 10 had an illegal value ** On entry to DSBMV parameter number 1 had an illegal value ** On entry to DSBMV parameter number 2 had an illegal value ** On entry to DSBMV parameter number 3 had an illegal value ** On entry to DSBMV parameter number 6 had an illegal value ** On entry to DSBMV parameter number 8 had an illegal value ** On entry to DSBMV parameter number 11 had an illegal value ** On entry to DSPMV parameter number 1 had an illegal value ** On entry to DSPMV parameter number 2 had an illegal value ** On entry to DSPMV parameter number 6 had an illegal value ** On entry to DSPMV parameter number 9 had an illegal value ** On entry to DTRMV parameter number 1 had an illegal value ** On entry to DTRMV parameter number 2 had an illegal value ** On entry to DTRMV parameter number 3 had an illegal value ** On entry to DTRMV parameter number 4 had an illegal value ** On entry to DTRMV parameter number 6 had an illegal value ** On entry to DTRMV parameter number 8 had an illegal value ** On entry to DTBMV parameter number 1 had an illegal value ** On entry to DTBMV parameter number 2 had an illegal value ** On entry to DTBMV parameter number 3 had an illegal value ** On entry to DTBMV parameter number 4 had an illegal value ** On entry to DTBMV parameter number 5 had an illegal value ** On entry to DTBMV parameter number 7 had an illegal value ** On entry to DTBMV parameter number 9 had an illegal value ** On entry to DTPMV parameter number 1 had an illegal value ** On entry to DTPMV parameter number 2 had an illegal value ** On entry to DTPMV parameter number 3 had an illegal value ** On entry to DTPMV parameter number 4 had an illegal value ** On entry to DTPMV parameter number 7 had an illegal value ** On entry to DTRSV parameter number 1 had an illegal value ** On entry to DTRSV parameter number 2 had an illegal value ** On entry to DTRSV parameter number 3 had an illegal value ** On entry to DTRSV parameter number 4 had an illegal value ** On entry to DTRSV parameter number 6 had an illegal value ** On entry to DTRSV parameter number 8 had an illegal value ** On entry to DTBSV parameter number 1 had an illegal value ** On entry to DTBSV parameter number 2 had an illegal value ** On entry to DTBSV parameter number 3 had an illegal value ** On entry to DTBSV parameter number 4 had an illegal value ** On entry to DTBSV parameter number 5 had an illegal value ** On entry to DTBSV parameter number 7 had an illegal value ** On entry to DTBSV parameter number 9 had an illegal value ** On entry to DTPSV parameter number 1 had an illegal value ** On entry to DTPSV parameter number 2 had an illegal value ** On entry to DTPSV parameter number 3 had an illegal value ** On entry to DTPSV parameter number 4 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to DTPSV parameter number 7 had an illegal value ** On entry to DGER parameter number 1 had an illegal value ** On entry to DGER parameter number 2 had an illegal value ** On entry to DGER parameter number 5 had an illegal value ** On entry to DGER parameter number 7 had an illegal value ** On entry to DGER parameter number 9 had an illegal value ** On entry to DSYR parameter number 1 had an illegal value ** On entry to DSYR parameter number 2 had an illegal value ** On entry to DSYR parameter number 5 had an illegal value ** On entry to DSYR parameter number 7 had an illegal value ** On entry to DSPR parameter number 1 had an illegal value ** On entry to DSPR parameter number 2 had an illegal value ** On entry to DSPR parameter number 5 had an illegal value ** On entry to DSYR2 parameter number 1 had an illegal value ** On entry to DSYR2 parameter number 2 had an illegal value ** On entry to DSYR2 parameter number 5 had an illegal value ** On entry to DSYR2 parameter number 7 had an illegal value ** On entry to DSYR2 parameter number 9 had an illegal value ** On entry to DSPR2 parameter number 1 had an illegal value ** On entry to DSPR2 parameter number 2 had an illegal value ** On entry to DSPR2 parameter number 5 had an illegal value ** On entry to DSPR2 parameter number 7 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\DBLAT2.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\DBLAT2.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 7: dblas3 7/115 Test #7: dblas3 ......................................................................................***Failed 3.69 sec ** On entry to DGEMM parameter number 1 had an illegal value ** On entry to DGEMM parameter number 1 had an illegal value ** On entry to DGEMM parameter number 2 had an illegal value ** On entry to DGEMM parameter number 2 had an illegal value ** On entry to DGEMM parameter number 3 had an illegal value ** On entry to DGEMM parameter number 3 had an illegal value ** On entry to DGEMM parameter number 3 had an illegal value ** On entry to DGEMM parameter number 3 had an illegal value ** On entry to DGEMM parameter number 4 had an illegal value ** On entry to DGEMM parameter number 4 had an illegal value ** On entry to DGEMM parameter number 4 had an illegal value ** On entry to DGEMM parameter number 4 had an illegal value ** On entry to DGEMM parameter number 5 had an illegal value ** On entry to DGEMM parameter number 5 had an illegal value ** On entry to DGEMM parameter number 5 had an illegal value ** On entry to DGEMM parameter number 5 had an illegal value ** On entry to DGEMM parameter number 8 had an illegal value ** On entry to DGEMM parameter number 8 had an illegal value ** On entry to DGEMM parameter number 8 had an illegal value ** On entry to DGEMM parameter number 8 had an illegal value ** On entry to DGEMM parameter number 10 had an illegal value ** On entry to DGEMM parameter number 10 had an illegal value ** On entry to DGEMM parameter number 10 had an illegal value ** On entry to DGEMM parameter number 10 had an illegal value ** On entry to DGEMM parameter number 13 had an illegal value ** On entry to DGEMM parameter number 13 had an illegal value ** On entry to DGEMM parameter number 13 had an illegal value ** On entry to DGEMM parameter number 13 had an illegal value ** On entry to DSYMM parameter number 1 had an illegal value ** On entry to DSYMM parameter number 2 had an illegal value ** On entry to DSYMM parameter number 3 had an illegal value ** On entry to DSYMM parameter number 3 had an illegal value ** On entry to DSYMM parameter number 3 had an illegal value ** On entry to DSYMM parameter number 3 had an illegal value ** On entry to DSYMM parameter number 4 had an illegal value ** On entry to DSYMM parameter number 4 had an illegal value ** On entry to DSYMM parameter number 4 had an illegal value ** On entry to DSYMM parameter number 4 had an illegal value ** On entry to DSYMM parameter number 7 had an illegal value ** On entry to DSYMM parameter number 7 had an illegal value ** On entry to DSYMM parameter number 7 had an illegal value ** On entry to DSYMM parameter number 7 had an illegal value ** On entry to DSYMM parameter number 9 had an illegal value ** On entry to DSYMM parameter number 9 had an illegal value ** On entry to DSYMM parameter number 9 had an illegal value ** On entry to DSYMM parameter number 9 had an illegal value ** On entry to DSYMM parameter number 12 had an illegal value ** On entry to DSYMM parameter number 12 had an illegal value ** On entry to DSYMM parameter number 12 had an illegal value ** On entry to DSYMM parameter number 12 had an illegal value ** On entry to DTRMM parameter number 1 had an illegal value ** On entry to DTRMM parameter number 2 had an illegal value ** On entry to DTRMM parameter number 3 had an illegal value ** On entry to DTRMM parameter number 4 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 5 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 6 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 9 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRMM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 1 had an illegal value ** On entry to DTRSM parameter number 2 had an illegal value ** On entry to DTRSM parameter number 3 had an illegal value ** On entry to DTRSM parameter number 4 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 5 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 6 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 9 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DTRSM parameter number 11 had an illegal value ** On entry to DSYRK parameter number 1 had an illegal value ** On entry to DSYRK parameter number 2 had an illegal value ** On entry to DSYRK parameter number 3 had an illegal value ** On entry to DSYRK parameter number 3 had an illegal value ** On entry to DSYRK parameter number 3 had an illegal value ** On entry to DSYRK parameter number 3 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to DSYRK parameter number 4 had an illegal value ** On entry to DSYRK parameter number 4 had an illegal value ** On entry to DSYRK parameter number 4 had an illegal value ** On entry to DSYRK parameter number 4 had an illegal value ** On entry to DSYRK parameter number 7 had an illegal value ** On entry to DSYRK parameter number 7 had an illegal value ** On entry to DSYRK parameter number 7 had an illegal value ** On entry to DSYRK parameter number 7 had an illegal value ** On entry to DSYRK parameter number 10 had an illegal value ** On entry to DSYRK parameter number 10 had an illegal value ** On entry to DSYRK parameter number 10 had an illegal value ** On entry to DSYRK parameter number 10 had an illegal value ** On entry to DSYR2K parameter number 1 had an illegal value ** On entry to DSYR2K parameter number 2 had an illegal value ** On entry to DSYR2K parameter number 3 had an illegal value ** On entry to DSYR2K parameter number 3 had an illegal value ** On entry to DSYR2K parameter number 3 had an illegal value ** On entry to DSYR2K parameter number 3 had an illegal value ** On entry to DSYR2K parameter number 4 had an illegal value ** On entry to DSYR2K parameter number 4 had an illegal value ** On entry to DSYR2K parameter number 4 had an illegal value ** On entry to DSYR2K parameter number 4 had an illegal value ** On entry to DSYR2K parameter number 7 had an illegal value ** On entry to DSYR2K parameter number 7 had an illegal value ** On entry to DSYR2K parameter number 7 had an illegal value ** On entry to DSYR2K parameter number 7 had an illegal value ** On entry to DSYR2K parameter number 9 had an illegal value ** On entry to DSYR2K parameter number 9 had an illegal value ** On entry to DSYR2K parameter number 9 had an illegal value ** On entry to DSYR2K parameter number 9 had an illegal value ** On entry to DSYR2K parameter number 12 had an illegal value ** On entry to DSYR2K parameter number 12 had an illegal value ** On entry to DSYR2K parameter number 12 had an illegal value ** On entry to DSYR2K parameter number 12 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\DBLAT3.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\DBLAT3.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 8: cblas1 8/115 Test #8: cblas1 ...................................................................................... Passed 0.03 sec Start 9: cblas2 9/115 Test #9: cblas2 ......................................................................................***Failed 6.73 sec ** On entry to CGEMV parameter number 1 had an illegal value ** On entry to CGEMV parameter number 2 had an illegal value ** On entry to CGEMV parameter number 3 had an illegal value ** On entry to CGEMV parameter number 6 had an illegal value ** On entry to CGEMV parameter number 8 had an illegal value ** On entry to CGEMV parameter number 11 had an illegal value ** On entry to CGBMV parameter number 1 had an illegal value ** On entry to CGBMV parameter number 2 had an illegal value ** On entry to CGBMV parameter number 3 had an illegal value ** On entry to CGBMV parameter number 4 had an illegal value ** On entry to CGBMV parameter number 5 had an illegal value ** On entry to CGBMV parameter number 8 had an illegal value ** On entry to CGBMV parameter number 10 had an illegal value ** On entry to CGBMV parameter number 13 had an illegal value ** On entry to CHEMV parameter number 1 had an illegal value ** On entry to CHEMV parameter number 2 had an illegal value ** On entry to CHEMV parameter number 5 had an illegal value ** On entry to CHEMV parameter number 7 had an illegal value ** On entry to CHEMV parameter number 10 had an illegal value ** On entry to CHBMV parameter number 1 had an illegal value ** On entry to CHBMV parameter number 2 had an illegal value ** On entry to CHBMV parameter number 3 had an illegal value ** On entry to CHBMV parameter number 6 had an illegal value ** On entry to CHBMV parameter number 8 had an illegal value ** On entry to CHBMV parameter number 11 had an illegal value ** On entry to CHPMV parameter number 1 had an illegal value ** On entry to CHPMV parameter number 2 had an illegal value ** On entry to CHPMV parameter number 6 had an illegal value ** On entry to CHPMV parameter number 9 had an illegal value ** On entry to CTRMV parameter number 1 had an illegal value ** On entry to CTRMV parameter number 2 had an illegal value ** On entry to CTRMV parameter number 3 had an illegal value ** On entry to CTRMV parameter number 4 had an illegal value ** On entry to CTRMV parameter number 6 had an illegal value ** On entry to CTRMV parameter number 8 had an illegal value ** On entry to CTBMV parameter number 1 had an illegal value ** On entry to CTBMV parameter number 2 had an illegal value ** On entry to CTBMV parameter number 3 had an illegal value ** On entry to CTBMV parameter number 4 had an illegal value ** On entry to CTBMV parameter number 5 had an illegal value ** On entry to CTBMV parameter number 7 had an illegal value ** On entry to CTBMV parameter number 9 had an illegal value ** On entry to CTPMV parameter number 1 had an illegal value ** On entry to CTPMV parameter number 2 had an illegal value ** On entry to CTPMV parameter number 3 had an illegal value ** On entry to CTPMV parameter number 4 had an illegal value ** On entry to CTPMV parameter number 7 had an illegal value ** On entry to CTRSV parameter number 1 had an illegal value ** On entry to CTRSV parameter number 2 had an illegal value ** On entry to CTRSV parameter number 3 had an illegal value ** On entry to CTRSV parameter number 4 had an illegal value ** On entry to CTRSV parameter number 6 had an illegal value ** On entry to CTRSV parameter number 8 had an illegal value ** On entry to CTBSV parameter number 1 had an illegal value ** On entry to CTBSV parameter number 2 had an illegal value ** On entry to CTBSV parameter number 3 had an illegal value ** On entry to CTBSV parameter number 4 had an illegal value ** On entry to CTBSV parameter number 5 had an illegal value ** On entry to CTBSV parameter number 7 had an illegal value ** On entry to CTBSV parameter number 9 had an illegal value ** On entry to CTPSV parameter number 1 had an illegal value ** On entry to CTPSV parameter number 2 had an illegal value ** On entry to CTPSV parameter number 3 had an illegal value ** On entry to CTPSV parameter number 4 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to CTPSV parameter number 7 had an illegal value ** On entry to CGERC parameter number 1 had an illegal value ** On entry to CGERC parameter number 2 had an illegal value ** On entry to CGERC parameter number 5 had an illegal value ** On entry to CGERC parameter number 7 had an illegal value ** On entry to CGERC parameter number 9 had an illegal value ** On entry to CGERU parameter number 1 had an illegal value ** On entry to CGERU parameter number 2 had an illegal value ** On entry to CGERU parameter number 5 had an illegal value ** On entry to CGERU parameter number 7 had an illegal value ** On entry to CGERU parameter number 9 had an illegal value ** On entry to CHER parameter number 1 had an illegal value ** On entry to CHER parameter number 2 had an illegal value ** On entry to CHER parameter number 5 had an illegal value ** On entry to CHER parameter number 7 had an illegal value ** On entry to CHPR parameter number 1 had an illegal value ** On entry to CHPR parameter number 2 had an illegal value ** On entry to CHPR parameter number 5 had an illegal value ** On entry to CHER2 parameter number 1 had an illegal value ** On entry to CHER2 parameter number 2 had an illegal value ** On entry to CHER2 parameter number 5 had an illegal value ** On entry to CHER2 parameter number 7 had an illegal value ** On entry to CHER2 parameter number 9 had an illegal value ** On entry to CHPR2 parameter number 1 had an illegal value ** On entry to CHPR2 parameter number 2 had an illegal value ** On entry to CHPR2 parameter number 5 had an illegal value ** On entry to CHPR2 parameter number 7 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\CBLAT2.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\CBLAT2.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 10: cblas3 10/115 Test #10: cblas3 ......................................................................................***Failed 4.09 sec Warning: ieee_inexact is signaling FORTRAN STOP Get-Content : Cannot find path '%SRC_DIR%\build\test\CBLAT3.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\CBLAT3.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 11: zblas1 11/115 Test #11: zblas1 ...................................................................................... Passed 0.03 sec Start 12: zblas2 12/115 Test #12: zblas2 ......................................................................................***Failed 6.71 sec ** On entry to ZGEMV parameter number 1 had an illegal value ** On entry to ZGEMV parameter number 2 had an illegal value ** On entry to ZGEMV parameter number 3 had an illegal value ** On entry to ZGEMV parameter number 6 had an illegal value ** On entry to ZGEMV parameter number 8 had an illegal value ** On entry to ZGEMV parameter number 11 had an illegal value ** On entry to ZGBMV parameter number 1 had an illegal value ** On entry to ZGBMV parameter number 2 had an illegal value ** On entry to ZGBMV parameter number 3 had an illegal value ** On entry to ZGBMV parameter number 4 had an illegal value ** On entry to ZGBMV parameter number 5 had an illegal value ** On entry to ZGBMV parameter number 8 had an illegal value ** On entry to ZGBMV parameter number 10 had an illegal value ** On entry to ZGBMV parameter number 13 had an illegal value ** On entry to ZHEMV parameter number 1 had an illegal value ** On entry to ZHEMV parameter number 2 had an illegal value ** On entry to ZHEMV parameter number 5 had an illegal value ** On entry to ZHEMV parameter number 7 had an illegal value ** On entry to ZHEMV parameter number 10 had an illegal value ** On entry to ZHBMV parameter number 1 had an illegal value ** On entry to ZHBMV parameter number 2 had an illegal value ** On entry to ZHBMV parameter number 3 had an illegal value ** On entry to ZHBMV parameter number 6 had an illegal value ** On entry to ZHBMV parameter number 8 had an illegal value ** On entry to ZHBMV parameter number 11 had an illegal value ** On entry to ZHPMV parameter number 1 had an illegal value ** On entry to ZHPMV parameter number 2 had an illegal value ** On entry to ZHPMV parameter number 6 had an illegal value ** On entry to ZHPMV parameter number 9 had an illegal value ** On entry to ZTRMV parameter number 1 had an illegal value ** On entry to ZTRMV parameter number 2 had an illegal value ** On entry to ZTRMV parameter number 3 had an illegal value ** On entry to ZTRMV parameter number 4 had an illegal value ** On entry to ZTRMV parameter number 6 had an illegal value ** On entry to ZTRMV parameter number 8 had an illegal value ** On entry to ZTBMV parameter number 1 had an illegal value ** On entry to ZTBMV parameter number 2 had an illegal value ** On entry to ZTBMV parameter number 3 had an illegal value ** On entry to ZTBMV parameter number 4 had an illegal value ** On entry to ZTBMV parameter number 5 had an illegal value ** On entry to ZTBMV parameter number 7 had an illegal value ** On entry to ZTBMV parameter number 9 had an illegal value ** On entry to ZTPMV parameter number 1 had an illegal value ** On entry to ZTPMV parameter number 2 had an illegal value ** On entry to ZTPMV parameter number 3 had an illegal value ** On entry to ZTPMV parameter number 4 had an illegal value ** On entry to ZTPMV parameter number 7 had an illegal value ** On entry to ZTRSV parameter number 1 had an illegal value ** On entry to ZTRSV parameter number 2 had an illegal value ** On entry to ZTRSV parameter number 3 had an illegal value ** On entry to ZTRSV parameter number 4 had an illegal value ** On entry to ZTRSV parameter number 6 had an illegal value ** On entry to ZTRSV parameter number 8 had an illegal value ** On entry to ZTBSV parameter number 1 had an illegal value ** On entry to ZTBSV parameter number 2 had an illegal value ** On entry to ZTBSV parameter number 3 had an illegal value ** On entry to ZTBSV parameter number 4 had an illegal value ** On entry to ZTBSV parameter number 5 had an illegal value ** On entry to ZTBSV parameter number 7 had an illegal value ** On entry to ZTBSV parameter number 9 had an illegal value ** On entry to ZTPSV parameter number 1 had an illegal value ** On entry to ZTPSV parameter number 2 had an illegal value ** On entry to ZTPSV parameter number 3 had an illegal value ** On entry to ZTPSV parameter number 4 had an illegal value Warning: ieee_inexact is signaling FORTRAN STOP ** On entry to ZTPSV parameter number 7 had an illegal value ** On entry to ZGERC parameter number 1 had an illegal value ** On entry to ZGERC parameter number 2 had an illegal value ** On entry to ZGERC parameter number 5 had an illegal value ** On entry to ZGERC parameter number 7 had an illegal value ** On entry to ZGERC parameter number 9 had an illegal value ** On entry to ZGERU parameter number 1 had an illegal value ** On entry to ZGERU parameter number 2 had an illegal value ** On entry to ZGERU parameter number 5 had an illegal value ** On entry to ZGERU parameter number 7 had an illegal value ** On entry to ZGERU parameter number 9 had an illegal value ** On entry to ZHER parameter number 1 had an illegal value ** On entry to ZHER parameter number 2 had an illegal value ** On entry to ZHER parameter number 5 had an illegal value ** On entry to ZHER parameter number 7 had an illegal value ** On entry to ZHPR parameter number 1 had an illegal value ** On entry to ZHPR parameter number 2 had an illegal value ** On entry to ZHPR parameter number 5 had an illegal value ** On entry to ZHER2 parameter number 1 had an illegal value ** On entry to ZHER2 parameter number 2 had an illegal value ** On entry to ZHER2 parameter number 5 had an illegal value ** On entry to ZHER2 parameter number 7 had an illegal value ** On entry to ZHER2 parameter number 9 had an illegal value ** On entry to ZHPR2 parameter number 1 had an illegal value ** On entry to ZHPR2 parameter number 2 had an illegal value ** On entry to ZHPR2 parameter number 5 had an illegal value ** On entry to ZHPR2 parameter number 7 had an illegal value Get-Content : Cannot find path '%SRC_DIR%\build\test\ZBLAT2.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\ZBLAT2.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 13: zblas3 13/115 Test #13: zblas3 ......................................................................................***Failed 4.35 sec Warning: ieee_inexact is signaling FORTRAN STOP Get-Content : Cannot find path '%SRC_DIR%\build\test\ZBLAT3.SUMM' because it does not exist. At %SRC_DIR%\build\test\test_helper.ps1:4 char:6 + If ((Get-Content $args[2] | %{$_ -match "FATAL"}) -contains $true) { + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (D:\bld\openblas...est\ZBLAT3.SUMM:String) [Get-Content], ItemNotFoundEx ception + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand Start 14: xscblat1 14/115 Test #14: xscblat1 .................................................................................... Passed 0.04 sec Start 15: xscblat2 15/115 Test #15: xscblat2 .................................................................................... Passed 9.14 sec Start 16: xscblat3 16/115 Test #16: xscblat3 .................................................................................... Passed 6.27 sec Start 17: xdcblat1 17/115 Test #17: xdcblat1 .................................................................................... Passed 0.04 sec Start 18: xdcblat2 18/115 Test #18: xdcblat2 .................................................................................... Passed 9.23 sec Start 19: xdcblat3 19/115 Test #19: xdcblat3 .................................................................................... Passed 7.04 sec Start 20: xccblat1 20/115 Test #20: xccblat1 .................................................................................... Passed 0.04 sec Start 21: xccblat2 21/115 Test #21: xccblat2 .................................................................................... Passed 9.12 sec Start 22: xccblat3 22/115 Test #22: xccblat3 .................................................................................... Passed 3.84 sec Start 23: xzcblat1 23/115 Test #23: xzcblat1 .................................................................................... Passed 0.04 sec Start 24: xzcblat2 24/115 Test #24: xzcblat2 .................................................................................... Passed 9.78 sec Start 25: xzcblat3 25/115 Test #25: xzcblat3 .................................................................................... Passed 8.20 sec Start 26: REAL_LAPACK_linear_equation_routines 26/115 Test #26: REAL_LAPACK_linear_equation_routines ........................................................ Passed 55.18 sec Start 27: COMPLEX_LAPACK_linear_equation_routines 27/115 Test #27: COMPLEX_LAPACK_linear_equation_routines ..................................................... Passed 74.16 sec Start 28: DOUBLE_PRECISION_LAPACK_linear_equation_routines 28/115 Test #28: DOUBLE_PRECISION_LAPACK_linear_equation_routines ............................................ Passed 57.04 sec Start 29: COMPLEX16_LAPACK_linear_equation_routines 29/115 Test #29: COMPLEX16_LAPACK_linear_equation_routines ................................................... Passed 71.81 sec Start 30: SINGLE-DOUBLE_PRECISION_LAPACK_prototype_linear_equation_routines 30/115 Test #30: SINGLE-DOUBLE_PRECISION_LAPACK_prototype_linear_equation_routines ........................... Passed 11.79 sec Start 31: Testing_COMPLEX-COMPLEX16_LAPACK_prototype_linear_equation_routines 31/115 Test #31: Testing_COMPLEX-COMPLEX16_LAPACK_prototype_linear_equation_routines ......................... Passed 19.05 sec Start 32: Testing_REAL_LAPACK_RFP_prototype_linear_equation_routines 32/115 Test #32: Testing_REAL_LAPACK_RFP_prototype_linear_equation_routines .................................. Passed 6.85 sec Start 33: Testing_DOUBLE_PRECISION_LAPACK_RFP_prototype_linear_equation_routines 33/115 Test #33: Testing_DOUBLE_PRECISION_LAPACK_RFP_prototype_linear_equation_routines ...................... Passed 6.74 sec Start 34: Testing_COMPLEX_LAPACK_RFP_prototype_linear_equation_routines 34/115 Test #34: Testing_COMPLEX_LAPACK_RFP_prototype_linear_equation_routines ............................... Passed 8.14 sec Start 35: Testing_COMPLEX16_LAPACK_RFP_prototype_linear_equation_routines 35/115 Test #35: Testing_COMPLEX16_LAPACK_RFP_prototype_linear_equation_routines ............................. Passed 7.71 sec Start 36: SNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines 36/115 Test #36: SNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines ...................................... Passed 3.00 sec Start 37: SSEP:_Testing_Symmetric_Eigenvalue_Problem_routines 37/115 Test #37: SSEP:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.02 sec Start 38: SSE2:_Testing_Symmetric_Eigenvalue_Problem_routines 38/115 Test #38: SSE2:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 2.95 sec Start 39: SSVD:_Testing_Singular_Value_Decomposition_routines 39/115 Test #39: SSVD:_Testing_Singular_Value_Decomposition_routines ......................................... Passed 3.01 sec Start 40: SSEC:_Testing_REAL_Eigen_Condition_Routines 40/115 Test #40: SSEC:_Testing_REAL_Eigen_Condition_Routines ................................................. Passed 3.21 sec Start 41: SSEV:_Testing_REAL_Nonsymmetric_Eigenvalue_Driver 41/115 Test #41: SSEV:_Testing_REAL_Nonsymmetric_Eigenvalue_Driver ........................................... Passed 2.89 sec Start 42: SGG:_Testing_REAL_Nonsymmetric_Generalized_Eigenvalue_Problem_routines 42/115 Test #42: SGG:_Testing_REAL_Nonsymmetric_Generalized_Eigenvalue_Problem_routines ...................... Passed 3.18 sec Start 43: SGD:_Testing_REAL_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines 43/115 Test #43: SGD:_Testing_REAL_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines ............... Passed 3.07 sec Start 44: SSB:_Testing_REAL_Symmetric_Eigenvalue_Problem_routines 44/115 Test #44: SSB:_Testing_REAL_Symmetric_Eigenvalue_Problem_routines ..................................... Passed 3.05 sec Start 45: SSG:_Testing_REAL_Symmetric_Generalized_Eigenvalue_Problem_routines 45/115 Test #45: SSG:_Testing_REAL_Symmetric_Generalized_Eigenvalue_Problem_routines ......................... Passed 3.06 sec Start 46: SGEBAL:_Testing_the_balancing_of_a_REAL_general_matrix 46/115 Test #46: SGEBAL:_Testing_the_balancing_of_a_REAL_general_matrix ...................................... Passed 3.12 sec Start 47: SGEBAK:_Testing_the_back_transformation_of_a_REAL_balanced_matrix 47/115 Test #47: SGEBAK:_Testing_the_back_transformation_of_a_REAL_balanced_matrix ........................... Passed 3.08 sec Start 48: SGGBAL:_Testing_the_balancing_of_a_pair_of_REAL_general_matrices 48/115 Test #48: SGGBAL:_Testing_the_balancing_of_a_pair_of_REAL_general_matrices ............................ Passed 3.19 sec Start 49: SGGBAK:_Testing_the_back_transformation_of_a_pair_of_REAL_balanced_matrices 49/115 Test #49: SGGBAK:_Testing_the_back_transformation_of_a_pair_of_REAL_balanced_matrices ................. Passed 3.02 sec Start 50: SBB:_Testing_banded_Singular_Value_Decomposition_routines 50/115 Test #50: SBB:_Testing_banded_Singular_Value_Decomposition_routines ................................... Passed 3.04 sec Start 51: SGLM:_Testing_Generalized_Linear_Regression_Model_routines 51/115 Test #51: SGLM:_Testing_Generalized_Linear_Regression_Model_routines .................................. Passed 3.03 sec Start 52: SGQR:_Testing_Generalized_QR_and_RQ_factorization_routines 52/115 Test #52: SGQR:_Testing_Generalized_QR_and_RQ_factorization_routines .................................. Passed 3.07 sec Start 53: SGSV:_Testing_Generalized_Singular_Value_Decomposition_routines 53/115 Test #53: SGSV:_Testing_Generalized_Singular_Value_Decomposition_routines ............................. Passed 3.06 sec Start 54: SCSD:_Testing_CS_Decomposition_routines 54/115 Test #54: SCSD:_Testing_CS_Decomposition_routines ..................................................... Passed 3.02 sec Start 55: SLSE:_Testing_Constrained_Linear_Least_Squares_routines 55/115 Test #55: SLSE:_Testing_Constrained_Linear_Least_Squares_routines ..................................... Passed 3.19 sec Start 56: CNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines 56/115 Test #56: CNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines ...................................... Passed 3.02 sec Start 57: CSEP:_Testing_Symmetric_Eigenvalue_Problem_routines 57/115 Test #57: CSEP:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 2.98 sec Start 58: CSE2:_Testing_Symmetric_Eigenvalue_Problem_routines 58/115 Test #58: CSE2:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.00 sec Start 59: CSVD:_Testing_Singular_Value_Decomposition_routines 59/115 Test #59: CSVD:_Testing_Singular_Value_Decomposition_routines ......................................... Passed 3.01 sec Start 60: CEC:_Testing_COMPLEX_Eigen_Condition_Routines 60/115 Test #60: CEC:_Testing_COMPLEX_Eigen_Condition_Routines ............................................... Passed 3.02 sec Start 61: CES:_Testing_COMPLEX_Nonsymmetric_Schur_Form_Driver 61/115 Test #61: CES:_Testing_COMPLEX_Nonsymmetric_Schur_Form_Driver ......................................... Passed 3.05 sec Start 62: CGG:_Testing_COMPLEX_Nonsymmetric_Generalized_Eigenvalue_Problem_routines 62/115 Test #62: CGG:_Testing_COMPLEX_Nonsymmetric_Generalized_Eigenvalue_Problem_routines ................... Passed 3.02 sec Start 63: CGD:_Testing_COMPLEX_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines 63/115 Test #63: CGD:_Testing_COMPLEX_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines ............ Passed 3.07 sec Start 64: CHB:_Testing_Hermitian_Eigenvalue_Problem_routines 64/115 Test #64: CHB:_Testing_Hermitian_Eigenvalue_Problem_routines .......................................... Passed 3.04 sec Start 65: CSG:_Testing_Symmetric_Generalized_Eigenvalue_Problem_routines 65/115 Test #65: CSG:_Testing_Symmetric_Generalized_Eigenvalue_Problem_routines .............................. Passed 3.02 sec Start 66: CGEBAL:_Testing_the_balancing_of_a_COMPLEX_general_matrix 66/115 Test #66: CGEBAL:_Testing_the_balancing_of_a_COMPLEX_general_matrix ................................... Passed 3.14 sec Start 67: CGEBAK:_Testing_the_back_transformation_of_a_COMPLEX_balanced_matrix 67/115 Test #67: CGEBAK:_Testing_the_back_transformation_of_a_COMPLEX_balanced_matrix ........................ Passed 3.04 sec Start 68: CGGBAL:_Testing_the_balancing_of_a_pair_of_COMPLEX_general_matrices 68/115 Test #68: CGGBAL:_Testing_the_balancing_of_a_pair_of_COMPLEX_general_matrices ......................... Passed 3.06 sec Start 69: CGGBAK:_Testing_the_back_transformation_of_a_pair_of_COMPLEX_balanced_matrices 69/115 Test #69: CGGBAK:_Testing_the_back_transformation_of_a_pair_of_COMPLEX_balanced_matrices .............. Passed 3.13 sec Start 70: CBB:_Testing_banded_Singular_Value_Decomposition_routines 70/115 Test #70: CBB:_Testing_banded_Singular_Value_Decomposition_routines ................................... Passed 3.12 sec Start 71: CGLM:_Testing_Generalized_Linear_Regression_Model_routines 71/115 Test #71: CGLM:_Testing_Generalized_Linear_Regression_Model_routines .................................. Passed 2.99 sec Start 72: CGQR:_Testing_Generalized_QR_and_RQ_factorization_routines 72/115 Test #72: CGQR:_Testing_Generalized_QR_and_RQ_factorization_routines .................................. Passed 3.06 sec Start 73: CGSV:_Testing_Generalized_Singular_Value_Decomposition_routines 73/115 Test #73: CGSV:_Testing_Generalized_Singular_Value_Decomposition_routines ............................. Passed 2.85 sec Start 74: CCSD:_Testing_CS_Decomposition_routines 74/115 Test #74: CCSD:_Testing_CS_Decomposition_routines ..................................................... Passed 2.96 sec Start 75: CLSE:_Testing_Constrained_Linear_Least_Squares_routines 75/115 Test #75: CLSE:_Testing_Constrained_Linear_Least_Squares_routines ..................................... Passed 3.01 sec Start 76: DNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines 76/115 Test #76: DNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines ...................................... Passed 3.03 sec Start 77: DSEP:_Testing_Symmetric_Eigenvalue_Problem_routines 77/115 Test #77: DSEP:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.06 sec Start 78: DSE2:_Testing_Symmetric_Eigenvalue_Problem_routines 78/115 Test #78: DSE2:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.02 sec Start 79: DSVD:_Testing_Singular_Value_Decomposition_routines 79/115 Test #79: DSVD:_Testing_Singular_Value_Decomposition_routines ......................................... Passed 3.11 sec Start 80: DEC:_Testing_DOUBLE_PRECISION_Eigen_Condition_Routines 80/115 Test #80: DEC:_Testing_DOUBLE_PRECISION_Eigen_Condition_Routines ...................................... Passed 3.11 sec Start 81: DEV:_Testing_DOUBLE_PRECISION_Nonsymmetric_Eigenvalue_Driver 81/115 Test #81: DEV:_Testing_DOUBLE_PRECISION_Nonsymmetric_Eigenvalue_Driver ................................ Passed 3.09 sec Start 82: DGG:_Testing_DOUBLE_PRECISION_Nonsymmetric_Generalized_Eigenvalue_Problem_routines 82/115 Test #82: DGG:_Testing_DOUBLE_PRECISION_Nonsymmetric_Generalized_Eigenvalue_Problem_routines .......... Passed 3.01 sec Start 83: DGD:_Testing_DOUBLE_PRECISION_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines 83/115 Test #83: DGD:_Testing_DOUBLE_PRECISION_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines ... Passed 3.07 sec Start 84: DSB:_Testing_DOUBLE_PRECISION_Symmetric_Eigenvalue_Problem_routines 84/115 Test #84: DSB:_Testing_DOUBLE_PRECISION_Symmetric_Eigenvalue_Problem_routines ......................... Passed 3.04 sec Start 85: DSG:_Testing_DOUBLE_PRECISION_Symmetric_Generalized_Eigenvalue_Problem_routines 85/115 Test #85: DSG:_Testing_DOUBLE_PRECISION_Symmetric_Generalized_Eigenvalue_Problem_routines ............. Passed 3.02 sec Start 86: DGEBAL:_Testing_the_balancing_of_a_DOUBLE_PRECISION_general_matrix 86/115 Test #86: DGEBAL:_Testing_the_balancing_of_a_DOUBLE_PRECISION_general_matrix .......................... Passed 2.95 sec Start 87: DGEBAK:_Testing_the_back_transformation_of_a_DOUBLE_PRECISION_balanced_matrix 87/115 Test #87: DGEBAK:_Testing_the_back_transformation_of_a_DOUBLE_PRECISION_balanced_matrix ............... Passed 2.99 sec Start 88: DGGBAL:_Testing_the_balancing_of_a_pair_of_DOUBLE_PRECISION_general_matrices 88/115 Test #88: DGGBAL:_Testing_the_balancing_of_a_pair_of_DOUBLE_PRECISION_general_matrices ................ Passed 2.96 sec Start 89: DGGBAK:_Testing_the_back_transformation_of_a_pair_of_DOUBLE_PRECISION_balanced_matrices 89/115 Test #89: DGGBAK:_Testing_the_back_transformation_of_a_pair_of_DOUBLE_PRECISION_balanced_matrices ..... Passed 3.02 sec Start 90: DBB:_Testing_banded_Singular_Value_Decomposition_routines 90/115 Test #90: DBB:_Testing_banded_Singular_Value_Decomposition_routines ................................... Passed 2.89 sec Start 91: DGLM:_Testing_Generalized_Linear_Regression_Model_routines 91/115 Test #91: DGLM:_Testing_Generalized_Linear_Regression_Model_routines .................................. Passed 3.19 sec Start 92: DGQR:_Testing_Generalized_QR_and_RQ_factorization_routines 92/115 Test #92: DGQR:_Testing_Generalized_QR_and_RQ_factorization_routines .................................. Passed 3.09 sec Start 93: DGSV:_Testing_Generalized_Singular_Value_Decomposition_routines 93/115 Test #93: DGSV:_Testing_Generalized_Singular_Value_Decomposition_routines ............................. Passed 2.99 sec Start 94: DCSD:_Testing_CS_Decomposition_routines 94/115 Test #94: DCSD:_Testing_CS_Decomposition_routines ..................................................... Passed 3.03 sec Start 95: DLSE:_Testing_Constrained_Linear_Least_Squares_routines 95/115 Test #95: DLSE:_Testing_Constrained_Linear_Least_Squares_routines ..................................... Passed 3.04 sec Start 96: ZNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines 96/115 Test #96: ZNEP:_Testing_Nonsymmetric_Eigenvalue_Problem_routines ...................................... Passed 2.95 sec Start 97: ZSEP:_Testing_Symmetric_Eigenvalue_Problem_routines 97/115 Test #97: ZSEP:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.05 sec Start 98: ZSE2:_Testing_Symmetric_Eigenvalue_Problem_routines 98/115 Test #98: ZSE2:_Testing_Symmetric_Eigenvalue_Problem_routines ......................................... Passed 3.10 sec Start 99: ZSVD:_Testing_Singular_Value_Decomposition_routines 99/115 Test #99: ZSVD:_Testing_Singular_Value_Decomposition_routines ......................................... Passed 2.96 sec Start 100: ZEC:_Testing_COMPLEX16_Eigen_Condition_Routines 100/115 Test #100: ZEC:_Testing_COMPLEX16_Eigen_Condition_Routines ............................................. Passed 3.05 sec Start 101: ZES:_Testing_COMPLEX16_Nonsymmetric_Schur_Form_Driver 101/115 Test #101: ZES:_Testing_COMPLEX16_Nonsymmetric_Schur_Form_Driver ....................................... Passed 3.10 sec Start 102: ZGG:_Testing_COMPLEX16_Nonsymmetric_Generalized_Eigenvalue_Problem_routines 102/115 Test #102: ZGG:_Testing_COMPLEX16_Nonsymmetric_Generalized_Eigenvalue_Problem_routines ................. Passed 2.98 sec Start 103: ZGD:_Testing_COMPLEX16_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines 103/115 Test #103: ZGD:_Testing_COMPLEX16_Nonsymmetric_Generalized_Eigenvalue_Problem_driver_routines .......... Passed 3.02 sec Start 104: ZHB:_Testing_Hermitian_Eigenvalue_Problem_routines 104/115 Test #104: ZHB:_Testing_Hermitian_Eigenvalue_Problem_routines .......................................... Passed 3.05 sec Start 105: ZSG:_Testing_Symmetric_Generalized_Eigenvalue_Problem_routines 105/115 Test #105: ZSG:_Testing_Symmetric_Generalized_Eigenvalue_Problem_routines .............................. Passed 3.06 sec Start 106: ZGEBAL:_Testing_the_balancing_of_a_COMPLEX16_general_matrix 106/115 Test #106: ZGEBAL:_Testing_the_balancing_of_a_COMPLEX16_general_matrix ................................. Passed 3.08 sec Start 107: ZGEBAK:_Testing_the_back_transformation_of_a_COMPLEX16_balanced_matrix 107/115 Test #107: ZGEBAK:_Testing_the_back_transformation_of_a_COMPLEX16_balanced_matrix ...................... Passed 3.00 sec Start 108: ZGGBAL:_Testing_the_balancing_of_a_pair_of_COMPLEX_general_matrices 108/115 Test #108: ZGGBAL:_Testing_the_balancing_of_a_pair_of_COMPLEX_general_matrices ......................... Passed 3.03 sec Start 109: ZGGBAK:_Testing_the_back_transformation_of_a_pair_of_COMPLEX16_balanced_matrices 109/115 Test #109: ZGGBAK:_Testing_the_back_transformation_of_a_pair_of_COMPLEX16_balanced_matrices ............ Passed 2.96 sec Start 110: ZBB:_Testing_banded_Singular_Value_Decomposition_routines 110/115 Test #110: ZBB:_Testing_banded_Singular_Value_Decomposition_routines ................................... Passed 3.04 sec Start 111: ZGLM:_Testing_Generalized_Linear_Regression_Model_routines 111/115 Test #111: ZGLM:_Testing_Generalized_Linear_Regression_Model_routines .................................. Passed 2.96 sec Start 112: ZGQR:_Testing_Generalized_QR_and_RQ_factorization_routines 112/115 Test #112: ZGQR:_Testing_Generalized_QR_and_RQ_factorization_routines .................................. Passed 3.04 sec Start 113: ZGSV:_Testing_Generalized_Singular_Value_Decomposition_routines 113/115 Test #113: ZGSV:_Testing_Generalized_Singular_Value_Decomposition_routines ............................. Passed 2.93 sec Start 114: ZCSD:_Testing_CS_Decomposition_routines 114/115 Test #114: ZCSD:_Testing_CS_Decomposition_routines ..................................................... Passed 3.04 sec Start 115: Constrained_Linear_Least_Squares_routines 115/115 Test #115: Constrained_Linear_Least_Squares_routines ................................................... Passed 2.94 sec 93% tests passed, 8 tests failed out of 115 ```