1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-12-22 20:36:01 +01:00

Commented call to _doc kernel.

This commit is contained in:
Francois Coppens 2023-02-02 17:23:14 +01:00
parent d3aebe52ff
commit 8a89003bf2

View File

@ -364,7 +364,7 @@ qmckl_exit_code qmckl_sherman_morrison_naive(const qmckl_context context,
NULL); NULL);
} }
#ifdef HAVE_HPC // #ifdef HAVE_HPC
if (LDS == (1+(Dim-1)/SIMD_LENGTH)*SIMD_LENGTH) { // Most cases if (LDS == (1+(Dim-1)/SIMD_LENGTH)*SIMD_LENGTH) { // Most cases
switch (Dim) { switch (Dim) {
<<naive_switch-case_generator()>> <<naive_switch-case_generator()>>
@ -382,16 +382,16 @@ qmckl_exit_code qmckl_sherman_morrison_naive(const qmckl_context context,
determinant); determinant);
} }
#else // #else
return qmckl_sherman_morrison_naive_doc(context, // return qmckl_sherman_morrison_naive_doc(context,
Dim, // Dim,
N_updates, // N_updates,
Updates, // Updates,
Updates_index, // Updates_index,
breakdown, // breakdown,
Slater_inv, // Slater_inv,
determinant); // determinant);
#endif // #endif
return QMCKL_FAILURE; return QMCKL_FAILURE;
} }