- 08 Mar, 2021 1 commit
-
-
Andreas Marek authored
-
- 26 Feb, 2021 1 commit
-
-
Andreas Marek authored
- Rename keyword "gpu" -> "nvidia-gpu" - Add keyword "amd-gpu"
-
- 24 Oct, 2019 1 commit
-
-
Andreas Marek authored
-
- 14 Oct, 2019 1 commit
-
-
Andreas Marek authored
ELPA can now link agains a 64bit integer verion of BLAS/LAPACK. Currently this only works if ELPA is compiled with MPI=OFF! The 64bit support is not available in the legacy interface
-
- 17 Jan, 2019 1 commit
-
-
Andreas Marek authored
-
- 03 Dec, 2018 1 commit
-
-
Pavel Kus authored
to avoid stalling between storing and loading parameters
-
- 28 Nov, 2018 1 commit
-
-
Pavel Kus authored
checking that the loaded values equal to the stored values
-
- 23 Nov, 2018 1 commit
-
-
Andreas Marek authored
-
- 20 Nov, 2018 1 commit
-
-
- 13 Nov, 2018 1 commit
-
-
Andreas Marek authored
-
- 27 Aug, 2018 3 commits
- 14 Aug, 2018 3 commits
- 13 Aug, 2018 1 commit
-
-
Pavel Kus authored
-
- 15 Jun, 2018 1 commit
-
-
Andreas Marek authored
-
- 25 May, 2018 1 commit
-
-
Pavel Kus authored
-
- 24 May, 2018 1 commit
-
-
Pavel Kus authored
-
- 11 May, 2018 2 commits
-
-
Andreas Marek authored
-
Andreas Marek authored
-
- 18 Apr, 2018 1 commit
-
-
Pavel Kus authored
if provided a a fourth parameter, all correctness checks will be skipped. Can be usefull for repeated performance tests.
-
- 01 Dec, 2017 1 commit
-
-
Andreas Marek authored
-
- 26 Oct, 2017 1 commit
-
-
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)
-