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
Hello,
I'm trying to build superlu_dist with the MAGMA library in order to use batched routines. My issue is that if I enable the Magma lib TPL flag, I get the following compilations errors :
superlu_dist/SRC/CplusplusFactor/batch_wrappers.h(97): error: identifier "magma_sgetrf_nopiv_vbatched" is undefined
return magma_sgetrf_nopiv_vbatched(m, n, dA_array, ldda, dtol_array, info_array, batchCount, queue);
^
superlu_dist/SRC/CplusplusFactor/batch_wrappers.h(107): error: identifier "magma_dgetrf_nopiv_vbatched" is undefined
return magma_dgetrf_nopiv_vbatched(m, n, dA_array, ldda, dtol_array, info_array, batchCount, queue);
^
superlu_dist/SRC/CplusplusFactor/batch_wrappers.h(117): error: identifier "magma_zgetrf_nopiv_vbatched" is undefined
return magma_zgetrf_nopiv_vbatched(m, n, (magmaDoubleComplex **)dA_array, ldda, dtol_array, info_array, batchCount, queue);
Looking at the Magma documentation and source code, I can't seem to find these "nopiv_vbatched" routines but I can find "nopiv_batched" and "vbatched" routines.
Since the error doesn't occur for other Magma routines used in the batch_wrappers.h file, I don't think the issue is due to linking configuration errors.
Thanks in advance for your help
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to build superlu_dist with the MAGMA library in order to use batched routines. My issue is that if I enable the Magma lib TPL flag, I get the following compilations errors :
Looking at the Magma documentation and source code, I can't seem to find these "nopiv_vbatched" routines but I can find "nopiv_batched" and "vbatched" routines.
Since the error doesn't occur for other Magma routines used in the batch_wrappers.h file, I don't think the issue is due to linking configuration errors.
Thanks in advance for your help
The text was updated successfully, but these errors were encountered: