You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to use gfortran 12.1 (from https://github.com/fxcoudert/gfortran-for-macOS/releases) with the Accelerate framework of Xcode CLT 13.1.
I test with the binaries produced in the TESTING subdirectory of Netlib BLAS 3.11.0 , expecting that these should exercise BLAS thoroughly. The Makefile is
but make run gives error messages. If I run the binaries manually in the order shown in the Makefile, I get
BLAS error: Parameter number 5 passed to cblas_scopy had an invalid value
BLAS error: Parameter number 5 passed to cblas_dcopy had an invalid value
** On entry to SGEMV , parameter number 1 had an illegal value
BLAS error: Parameter number 3 passed to cblas_sgemv had an invalid value
** On entry to DGEMV , parameter number 1 had an illegal value
BLAS error: Parameter number 4 passed to cblas_dgemv had an invalid value
** On entry to CGEMV , parameter number 1 had an illegal value
BLAS error: Parameter m passed to cblas_cgemv was -1, which is invalid.
** On entry to ZGEMV , parameter number 1 had an illegal value
BLAS error: Parameter m passed to cblas_zgemv was -1, which is invalid.
** 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
M cannot be less than zero 0, but has value -1. BLAS error: Parameter number 4 passed to cblas_sgemm had an invalid value
** 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
M cannot be less than zero 0, but has value -1. BLAS error: Parameter number 4 passed to cblas_dgemm had an invalid value
** On entry to CGEMM , parameter number 1 had an illegal value
** On entry to CGEMM , parameter number 1 had an illegal value
** On entry to CGEMM , parameter number 1 had an illegal value
** On entry to CGEMM , parameter number 2 had an illegal value
** On entry to CGEMM , parameter number 2 had an illegal value
** On entry to CGEMM , parameter number 2 had an illegal value
M cannot be less than zero 0, but has value -1. BLAS error: Parameter number 4 passed to cblas_cgemm had an invalid value
** On entry to ZGEMM , parameter number 1 had an illegal value
** On entry to ZGEMM , parameter number 1 had an illegal value
** On entry to ZGEMM , parameter number 1 had an illegal value
** On entry to ZGEMM , parameter number 2 had an illegal value
** On entry to ZGEMM , parameter number 2 had an illegal value
** On entry to ZGEMM , parameter number 2 had an illegal value
M cannot be less than zero 0, but has value -1. BLAS error: Parameter number 4 passed to cblas_zgemm had an invalid value
I try to use gfortran 12.1 (from https://github.com/fxcoudert/gfortran-for-macOS/releases) with the Accelerate framework of Xcode CLT 13.1.
I test with the binaries produced in the TESTING subdirectory of Netlib BLAS 3.11.0 , expecting that these should exercise BLAS thoroughly. The Makefile is
but
make run
gives error messages. If I run the binaries manually in the order shown in the Makefile, I getand
In addition to the 2 FAILs, there are 26 PASSed tests.
It appears to me that something is missing in vecLibfFort that would prevent these errors.
The text was updated successfully, but these errors were encountered: