Modify the vfc_ci wrapper and its config

- init and dump have to be called manually
- Few config changes to fix CI
This commit is contained in:
Aurelien Delval 2022-09-27 13:37:06 +00:00
parent 98fdd5f1f3
commit f10a2fe91e
4 changed files with 10 additions and 22 deletions

View File

@ -273,7 +273,6 @@ AC_ARG_ENABLE([hpc],
AS_IF([test "x$enable_hpc" = "yes"],
[AC_DEFINE([HAVE_HPC], [1], [Activate HPC routines])])
echo "XXX VFC"
# Enable Verificarlo tests
AC_ARG_ENABLE([vfc_ci],
[AS_HELP_STRING([--enable-vfc_ci],
@ -281,10 +280,8 @@ AC_ARG_ENABLE([vfc_ci],
[enable_vfc_ci=$enableval],
[enable_vfc_ci=no])
vfc_ci="false"
AS_IF([test "x$enable_vfc_ci" = "yes"],
[vfc_ci="true"
FCFLAGS="-D VFC_CI $FCFLAGS"
AS_IF([test "x$enable_vfc_ci" = "xyes"],
[FCFLAGS="-D VFC_CI $FCFLAGS"
CFLAGS="-D VFC_CI $CFLAGS"])
AM_CONDITIONAL([VFC_CI], [test "x$vfc_ci" = "xtrue"])

View File

@ -19,6 +19,7 @@ Functions for the computation of distances between particles.
int main() {
qmckl_context context;
context = qmckl_context_create();
qmckl_init_probes();
#+end_src
@ -1517,6 +1518,7 @@ end function qmckl_distance_rescaled_deriv_e_f
assert (qmckl_context_destroy(context) == QMCKL_SUCCESS);
qmckl_dump_probes();
return 0;
}

View File

@ -76,17 +76,15 @@ https://github.com/verificarlo/verificarlo/blob/master/doc/06-Postprocessing.md#
** Automatically initialize the ~vfc_probe~ object if ~VFC_CI~ is defined
#+begin_src c :tangle (eval h_private_func)
#ifdef VFC_CI
void qmckl_init_probes() __attribute__((constructor));
#endif
void qmckl_init_probes();
#+end_src
#+begin_src c :tangle (eval c)
void qmckl_init_probes(){
#ifdef VFC_CI
void __attribute__((constructor)) qmckl_init_probes(){
probes = vfc_init_probes();
}
#endif
}
#+end_src
** Standard probe, without check
@ -183,17 +181,15 @@ bool qmckl_probe_check_relative (
** Automatically delete and dump the vfc_probe object if ~VFC_CI~ is defined
#+begin_src c :tangle (eval h_private_func)
#ifdef VFC_CI
void qmckl_dump_probes() __attribute__((destructor));
#endif
void qmckl_dump_probes();
#+end_src
#+begin_src c :tangle (eval c)
void qmckl_dump_probes(){
#ifdef VFC_CI
void __attribute__((destructor)) qmckl_dump_probes(){
vfc_dump_probes(&probes);
}
#endif
}
#+end_src
* Fortran wrappers

View File

@ -7,13 +7,6 @@
"name": "libinterflop_mca.so",
"repetitions": 25
}]
},
{
"executable": "tests/test_qmckl_ao",
"vfc_backends": [{
"name": "libinterflop_mca.so",
"repetitions": 25
}]
}
]
}