fix linear algebra calls

This commit is contained in:
edoapra 2025-09-11 11:25:51 -07:00
parent 3df06cd8e4
commit bde0d2ece6
No known key found for this signature in database
GPG key ID: 9E6A0B70826967BA

View file

@ -112,12 +112,10 @@
! First step is to get (A-B)^(1/2)
call ga_sync()
#if defined(PARALLEL_DIAG)
#ifdef SCALAPACK
info= ga_cholesky('L',g_amb)
#else
#elif defined(PEIGS)
call ga_chol(g_amb, g_amb, info)
#endif
#else
call ga_chol_seq(g_amb, g_amb, info)
#endif
@ -289,12 +287,10 @@
! First step is to get (A-B)^(1/2)
call ga_sync()
#if defined(PARALLEL_DIAG)
#ifdef SCALAPACK
info= ga_cholesky('L',g_amb)
#else
#elif defined(PEIGS)
call ga_chol(g_amb, g_amb, info)
#endif
#else
call ga_chol_seq(g_amb, g_amb, info)
#endif