- Feb 15, 2021
-
-
Andreas Marek authored
-
- Jul 26, 2020
-
-
Wenzhe Yu authored
"#!/usr/bin/python3" only works if python3 is found in "/usr/bin".
-
- Jul 20, 2020
-
-
Andreas Marek authored
Only minimal changes done so far (mostly print() stuff)
-
- Oct 24, 2019
-
-
Andreas Marek authored
-
- Oct 21, 2019
-
-
Andreas Marek authored
-
- Oct 17, 2019
-
-
Andreas Marek authored
ELPA can now be linked against a 64bit integer version of MPI and ScalaPack. This is an experimental feature The following points are still to be done - does not work with real QR-decomposition - generalized routines return wrong results - the C tests and the C Cannon algorithm implementation do not work (no 64bit header files for MPI *at least* with Intel MPI)
-
- Oct 07, 2019
-
-
Andreas Marek authored
-
- Sep 24, 2019
-
-
Andreas Marek authored
Obviously, recent versions of automake decided to filter out an "test_" string which led to some surprises
-
- May 08, 2019
-
-
Pavel Kus authored
and runs several elpas (still mpi-based) in parallel. Each elpa "instance" then splits its communicator to row and column communicator, as it is always done. This is actually often done in FHI-aims and was previously leading to issues when using OmniPath. Hopefully was solved by Intel MPI 2019.3. Keeping the test for future reference.
-
- Dec 04, 2018
-
-
Pavel Kus authored
-
- Nov 21, 2018
-
-
Pavel Kus authored
mpi_comm_parent is allways requred (it was not required before, but actually the code internals expected it to be supplied, at least for ELPA 2 calculation OR whenever GPU was used)
-
- Nov 15, 2018
-
- Nov 08, 2018
-
-
Andreas Marek authored
-
- Aug 27, 2018
-
-
Pavel Kus authored
-
- Aug 01, 2018
-
-
Pavel Kus authored
because otherwise the cannons algorithm is not usually tested
-
- Jun 05, 2018
-
-
Lorenz Huedepohl authored
-
- May 25, 2018
-
-
Lorenz Huedepohl authored
-
- Apr 17, 2018
-
-
Andreas Marek authored
-
- Feb 05, 2018
- Jan 29, 2018
-
-
Pavel Kus authored
executables were generated event though the functionality is not present in test.c
-
- Jan 18, 2018
-
-
Andreas Marek authored
-
- Dec 08, 2017
-
-
Andreas Marek authored
-
- Dec 07, 2017
-
-
Andreas Marek authored
test.c currently does not support all the flags test.F90 does, so there were a lot of useless test cases generated.
-
Lorenz Huedepohl authored
-
- Dec 06, 2017
-
-
Andreas Marek authored
-
Andreas Marek authored
- per default only some tests are run - by setting CHECK_LEVEL=extended all test jobs are run
-
- Dec 05, 2017
-
-
Andreas Marek authored
-
Lorenz Huedepohl authored
-
- Nov 27, 2017
-
-
Andreas Marek authored
-
- Nov 25, 2017
-
-
Andreas Marek authored
-
Andreas Marek authored
-
- Nov 24, 2017
-
-
Andreas Marek authored
-
- Nov 07, 2017
- Oct 30, 2017
-
-
Pavel Kus authored
-
- Oct 26, 2017
-
-
Lorenz Huedepohl authored
To be used like this class(elpa_t), pointer :: e class(elpa_autotune_t), pointer :: tune_state e => elpa_allocate() call e%set(...) [...] assert_elpa_ok(e%setup()) tune_state => e%autotune_setup(ELPA_AUTOTUNE_FAST, ELPA_AUTOTUNE_DOMAIN_REAL) ! Autotuning loop, continues until all combinations have been tried do while (e%autotune_step(tune_state)) ! Do the steps that are representative of your calculation call e%eigenvectors(a, ev, z, error) end do ! Fix best parameters, and de-allocate the autotune object call e%autotune_set_best(tune_state) call elpa_autotune_deallocate(tune_state)
-
- Oct 16, 2017
-
-
Pavel Kus authored
both fortran and C tests generated in generate_automake_test_programs.py linker flags added by hand -- FIX this
-
- Sep 03, 2017
-
-
Pavel Kus authored
-