Skip to content

Commit

Permalink
Merge pull request #557 from EricaCMitchell/pr-lapack_hotfix
Browse files Browse the repository at this point in the history
Hotfix for MADNESS_LINALG_USE_LAPACKE = true
  • Loading branch information
evaleev authored Oct 26, 2024
2 parents b82d6c9 + eee6a59 commit 67ea7b5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/madness/tensor/lapack.cc
Original file line number Diff line number Diff line change
Expand Up @@ -476,11 +476,7 @@ STATIC inline void geqrf_(integer *m, integer *n,
STATIC inline void geqrf_(integer *m, integer *n,
real8 *a, integer *lda, real8 *tau,
real8 *work, integer *lwork, integer *infoOUT) {
#if MADNESS_LINALG_USE_LAPACKE
dgeqrf_(LAPACK_ROW_MAJOR, m, n, a, lda, tau, infoOUT);
#else
dgeqrf_(m, n, a, lda, tau, work, lwork, infoOUT);
#endif
}

STATIC inline void geqrf_(integer *m, integer *n,
Expand Down

0 comments on commit 67ea7b5

Please sign in to comment.