Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

Potential ZGESVD Problem with LWORK

Nathan_Champagne
Nuevo Colaborador I
2.409 Vistas

There may be a problem in the MKL version of zgesvd (SVD for complex double precision values).

The problem (demonstrated in the attached code) is the reconstructed results are not correct for complex double precision values when using LWORK computed by zgesvd. The archive contains files for building two programs (Windows and Mac build files). One program, svd_mkl, uses the MKL libraries, and the second program, svd_custom, uses a custom-built LAPACK library with the MKL BLAS.

A pass/fail test, discussed here, is applied to the results. The MKL executable passes when a formula-based LWORK value is used, but fails when a zgesvd-provided value is used. The executable that uses the custom-built LAPACK library passes for both cases.

Sample output from MKL executable:

LWORK estimated by formula.
Infinity norm of residual matrix in the 1st case 3.754315870226376E-018
** Test passed **

LWORK computed by routine.
Infinity norm of residual matrix in the 2nd case 4.503115539806813E-003
**** Test FAILED ****

 

Sample output from custom-built LAPACK library executable:

LWORK estimated by formula.
 Infinity norm of residual matrix in the 1st case 4.671276609658848E-018
** Test passed **

LWORK computed by routine.
 Infinity norm of residual matrix in the 2nd case 4.333994776498896E-018
** Test passed **

Thanks,
Nathan

0 kudos
1 Solución
Nathan_Champagne
Nuevo Colaborador I
2.229 Vistas

I installed the latest oneAPI Base and HPC Toolkits on a 2019 Mac Pro (3.2 GHz 16-Core Intel Xeon W). All the tests pass, now. The old and new results are attached.

Ver la solución en mensaje original publicado

7 Respuestas
mecej4
Colaborador Distinguido III
2.381 Vistas

1. I looked at your code briefly, and I note that the formula that you used to compute LWORK is the one for the "real flavors" of ?GESVD. For "complex flavors", the formula is LWORK >= 2*min(m,n) + max(m,n) . Thus, you are over-allocating the work array, but that should not affect the results.

2. On Windows, using the MKL version 2020.0.4, I do not obtain a "Test failed" message, whether I build for IA32 or x64.

Nathan_Champagne
Nuevo Colaborador I
2.374 Vistas

That's weird. I did some more tests and noticed that failure occurs when LWORK >= 47668 for svd_mkl (Mac and Windows).

Nathan_Champagne
Nuevo Colaborador I
2.369 Vistas

I tried the svd_mkl executable on another Mac, and all the tests passed! So, the test failure occurs on a 2019 Mac Pro (3.2 GHz 16-Core Intel Xeon W), and the tests pass on a 2017 MacBook Pro. Any suggestions on how to proceed?

Thanks.

Note that the Windows tests were done on the same 2019 Mac Pro.

 

mecej4
Colaborador Distinguido III
2.359 Vistas

If you have access to a native Windows PC (rather than Windows running in a VM) with the MKL runtime, you could see if the EXE will work on it.

Similarly, if you have been building multi-thread versions, you could try building and running a serial version.

Nathan_Champagne
Nuevo Colaborador I
2.338 Vistas

The tests pass on a native Windows PC. The builds have been serial.

 

Nathan_Champagne
Nuevo Colaborador I
2.230 Vistas

I installed the latest oneAPI Base and HPC Toolkits on a 2019 Mac Pro (3.2 GHz 16-Core Intel Xeon W). All the tests pass, now. The old and new results are attached.

Gennady_F_Intel
Moderador
2.211 Vistas

thanks Nathan for the update. This issue has been resolved and we will no longer respond to this thread. If you require additional assistance from Intel, please start a new thread.

Responder