LCOV - code coverage report
Current view: top level - src - input_cp2k_global.F (source / functions) Coverage Total Hit
Test: CP2K Regtests (git:8ebf9ad) Lines: 100.0 % 225 225
Test Date: 2026-01-22 06:43:13 Functions: 100.0 % 4 4

            Line data    Source code
       1              : !--------------------------------------------------------------------------------------------------!
       2              : !   CP2K: A general program to perform molecular dynamics simulations                              !
       3              : !   Copyright 2000-2026 CP2K developers group <https://cp2k.org>                                   !
       4              : !                                                                                                  !
       5              : !   SPDX-License-Identifier: GPL-2.0-or-later                                                      !
       6              : !--------------------------------------------------------------------------------------------------!
       7              : 
       8              : ! **************************************************************************************************
       9              : !> \brief builds the global input section for cp2k
      10              : !> \par History
      11              : !>      06.2004 created [fawzi]
      12              : !>      03.2014 moved to separate file [Ole Schuett]
      13              : !>      10.2016 update seed input [Matthias Krack]
      14              : !> \author fawzi
      15              : ! **************************************************************************************************
      16              : MODULE input_cp2k_global
      17              :    USE bibliography,                    ONLY: Ceriotti2014,&
      18              :                                               Frigo2005,&
      19              :                                               Schonherr2014
      20              :    USE cp_blacs_env,                    ONLY: BLACS_GRID_COL,&
      21              :                                               BLACS_GRID_ROW,&
      22              :                                               BLACS_GRID_SQUARE
      23              :    USE cp_dbcsr_cp2k_link,              ONLY: create_dbcsr_section
      24              :    USE cp_fm_cholesky,                  ONLY: FM_CHOLESKY_TYPE_DEFAULT,&
      25              :                                               FM_CHOLESKY_TYPE_DLAF,&
      26              :                                               FM_CHOLESKY_TYPE_SCALAPACK
      27              :    USE cp_fm_diag,                      ONLY: FM_DIAG_TYPE_CUSOLVER,&
      28              :                                               FM_DIAG_TYPE_DEFAULT,&
      29              :                                               FM_DIAG_TYPE_DLAF,&
      30              :                                               FM_DIAG_TYPE_ELPA,&
      31              :                                               FM_DIAG_TYPE_SCALAPACK
      32              :    USE cp_fm_elpa,                      ONLY: elpa_kernel_descriptions,&
      33              :                                               elpa_kernel_ids,&
      34              :                                               elpa_kernel_names,&
      35              :                                               elpa_one_stage,&
      36              :                                               elpa_qr
      37              :    USE cp_fm_struct,                    ONLY: cp_fm_struct_get_ncol_block,&
      38              :                                               cp_fm_struct_get_nrow_block
      39              :    USE cp_output_handling,              ONLY: add_last_numeric,&
      40              :                                               cp_print_key_section_create,&
      41              :                                               debug_print_level,&
      42              :                                               high_print_level,&
      43              :                                               low_print_level,&
      44              :                                               medium_print_level,&
      45              :                                               silent_print_level
      46              :    USE grid_api,                        ONLY: GRID_BACKEND_AUTO,&
      47              :                                               GRID_BACKEND_CPU,&
      48              :                                               GRID_BACKEND_DGEMM,&
      49              :                                               GRID_BACKEND_GPU,&
      50              :                                               GRID_BACKEND_HIP,&
      51              :                                               GRID_BACKEND_REF
      52              :    USE input_constants,                 ONLY: &
      53              :         bsse_run, callgraph_all, callgraph_master, callgraph_none, cell_opt_run, debug_run, &
      54              :         do_atom, do_band, do_cosma, do_cp2k, do_dgemm_blas, do_dgemm_spla, do_farming, &
      55              :         do_fft_fftw3, do_fft_sg, do_opt_basis, do_optimize_input, do_scalapack, do_swarm, do_tamc, &
      56              :         do_test, do_tree_mc, do_tree_mc_ana, driver_run, ehrenfest, energy_force_run, energy_run, &
      57              :         fftw_plan_estimate, fftw_plan_exhaustive, fftw_plan_measure, fftw_plan_patient, gaussian, &
      58              :         geo_opt_run, linear_response_run, mimic_run, mol_dyn_run, mon_car_run, negf_run, none_run, &
      59              :         pint_run, real_time_propagation, tree_mc_run, vib_anal
      60              :    USE input_keyword_types,             ONLY: keyword_create,&
      61              :                                               keyword_release,&
      62              :                                               keyword_type
      63              :    USE input_section_types,             ONLY: section_add_keyword,&
      64              :                                               section_add_subsection,&
      65              :                                               section_create,&
      66              :                                               section_release,&
      67              :                                               section_type
      68              :    USE input_val_types,                 ONLY: char_t,&
      69              :                                               integer_t,&
      70              :                                               logical_t
      71              :    USE kinds,                           ONLY: dp
      72              :    USE string_utilities,                ONLY: s2a
      73              :    USE timings,                         ONLY: default_timings_level
      74              : #include "./base/base_uses.f90"
      75              : 
      76              :    IMPLICIT NONE
      77              :    PRIVATE
      78              : 
      79              :    LOGICAL, PRIVATE, PARAMETER :: debug_this_module = .TRUE.
      80              :    CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'input_cp2k_global'
      81              : 
      82              :    PUBLIC :: create_global_section
      83              : 
      84              : CONTAINS
      85              : 
      86              : ! **************************************************************************************************
      87              : !> \brief section to hold global settings for the whole program
      88              : !> \param section the section to be created
      89              : !> \author fawzi
      90              : ! **************************************************************************************************
      91        15442 :    SUBROUTINE create_global_section(section)
      92              :       TYPE(section_type), POINTER                        :: section
      93              : 
      94              :       INTEGER                                            :: default_dgemm
      95              :       TYPE(keyword_type), POINTER                        :: keyword
      96              :       TYPE(section_type), POINTER                        :: print_key, sub_section
      97              : 
      98        15442 :       NULLIFY (print_key)
      99        15442 :       CPASSERT(.NOT. ASSOCIATED(section))
     100              :       CALL section_create(section, __LOCATION__, name="GLOBAL", &
     101              :                           description="Section with general information regarding which kind "// &
     102              :                           "of simulation to perform an parameters for the whole PROGRAM", &
     103        15442 :                           n_keywords=7, n_subsections=0, repeats=.FALSE.)
     104              : 
     105        15442 :       NULLIFY (keyword)
     106              :       CALL keyword_create(keyword, __LOCATION__, name="BLACS_GRID", &
     107              :                           description="how to distribute the processors on the 2d grid needed "// &
     108              :                           "by BLACS (and thus SCALAPACK)", usage="BLACS_GRID SQUARE", &
     109              :                           default_i_val=BLACS_GRID_SQUARE, enum_c_vals=s2a("SQUARE", "ROW", "COLUMN"), &
     110              :                           enum_desc=s2a("Distribution by matrix blocks", "Distribution by matrix rows", &
     111              :                                         "Distribution by matrix columns"), &
     112        15442 :                           enum_i_vals=[BLACS_GRID_SQUARE, BLACS_GRID_ROW, BLACS_GRID_COL])
     113        15442 :       CALL section_add_keyword(section, keyword)
     114        15442 :       CALL keyword_release(keyword)
     115              : 
     116              :       CALL keyword_create(keyword, __LOCATION__, name="BLACS_REPEATABLE", &
     117              :                           description="Use a topology for BLACS collectives that is guaranteed to be repeatable "// &
     118              :                           "on homogeneous architectures", &
     119              :                           usage="BLACS_REPEATABLE", &
     120        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     121        15442 :       CALL section_add_keyword(section, keyword)
     122        15442 :       CALL keyword_release(keyword)
     123              : 
     124              :       CALL keyword_create(keyword, __LOCATION__, name="PREFERRED_DIAG_LIBRARY", &
     125              :                           description="Specifies the diagonalization library to be used. If not available, "// &
     126              :                           "the ScaLAPACK library is used", &
     127              :                           usage="PREFERRED_DIAG_LIBRARY ELPA", &
     128              :                           enum_i_vals=[FM_DIAG_TYPE_ELPA, &
     129              :                                        FM_DIAG_TYPE_SCALAPACK, &
     130              :                                        FM_DIAG_TYPE_SCALAPACK, &
     131              :                                        FM_DIAG_TYPE_CUSOLVER, &
     132              :                                        FM_DIAG_TYPE_DLAF], &
     133              :                           enum_c_vals=s2a("ELPA", "ScaLAPACK", "SL", "CUSOLVER", "DLAF"), &
     134              :                           enum_desc=s2a("ELPA library", &
     135              :                                         "ScaLAPACK library", &
     136              :                                         "ScaLAPACK library (shorthand)", &
     137              :                                         "cuSOLVER (CUDA GPU library)", &
     138              :                                         "DLA-Future (CUDA/HIP GPU library)"), &
     139        15442 :                           default_i_val=FM_DIAG_TYPE_DEFAULT)
     140        15442 :       CALL section_add_keyword(section, keyword)
     141        15442 :       CALL keyword_release(keyword)
     142              : 
     143              :       CALL keyword_create(keyword, __LOCATION__, name="PREFERRED_CHOLESKY_LIBRARY", &
     144              :                           description="Specifies Cholesky decomposition library to be used. If not available, "// &
     145              :                           "the ScaLAPACK library is used", &
     146              :                           usage="PREFERRED_CHOLESKY_LIBRARY DLAF", &
     147              :                           enum_i_vals=[FM_CHOLESKY_TYPE_SCALAPACK, &
     148              :                                        FM_CHOLESKY_TYPE_SCALAPACK, &
     149              :                                        FM_CHOLESKY_TYPE_DLAF], &
     150              :                           enum_c_vals=s2a("ScaLAPACK", "SL", "DLAF"), &
     151              :                           enum_desc=s2a("ScaLAPACK library", &
     152              :                                         "ScaLAPACK library (shorthand)", &
     153              :                                         "DLA-Future (CUDA/HIP GPU library)"), &
     154        15442 :                           default_i_val=FM_CHOLESKY_TYPE_DEFAULT)
     155        15442 :       CALL section_add_keyword(section, keyword)
     156        15442 :       CALL keyword_release(keyword)
     157              : 
     158              : #if defined(__SPLA) && defined(__OFFLOAD_GEMM)
     159              :       default_dgemm = do_dgemm_spla
     160              : #else
     161        15442 :       default_dgemm = do_dgemm_blas
     162              : #endif
     163              :       CALL keyword_create(keyword, __LOCATION__, name="PREFERRED_DGEMM_LIBRARY", &
     164              :                           description="Specifies the DGEMM library to be used. If not available, "// &
     165              :                           "the BLAS routine is used. This keyword affects some DGEMM calls in the WFC code and turns on their "// &
     166              :                           "acceleration with SpLA. This keyword affects only local DGEMM calls, not the calls to PDGEMM "// &
     167              :                           "(see keyword FM%TYPE_OF_MATRIX_MULTIPLICATION).", &
     168              :                           usage="PREFERRED_DGEMM_LIBRARY SPLA", &
     169              :                           default_i_val=default_dgemm, &
     170              :                           enum_i_vals=[do_dgemm_spla, do_dgemm_blas], &
     171              :                           enum_c_vals=s2a("SPLA", "BLAS"), &
     172        15442 :                           enum_desc=s2a("SPLA library", "BLAS library"))
     173        15442 :       CALL section_add_keyword(section, keyword)
     174        15442 :       CALL keyword_release(keyword)
     175              : 
     176              :       CALL keyword_create(keyword, __LOCATION__, name="EPS_CHECK_DIAG", &
     177              :                           description="Check that the orthonormality of the eigenvectors after a diagonalization "// &
     178              :                           "fulfills the specified numerical accuracy. A negative threshold value disables the check.", &
     179              :                           usage="EPS_CHECK_DIAG 1.0E-14", &
     180        15442 :                           default_r_val=-1.0_dp)
     181        15442 :       CALL section_add_keyword(section, keyword)
     182        15442 :       CALL keyword_release(keyword)
     183              : 
     184              :       CALL keyword_create(keyword, __LOCATION__, name="ELPA_KERNEL", &
     185              :                           description="Specifies the kernel to be used when ELPA is in use", &
     186              :                           default_i_val=elpa_kernel_ids(1), &
     187              :                           enum_i_vals=elpa_kernel_ids, &
     188              :                           enum_c_vals=elpa_kernel_names, &
     189        15442 :                           enum_desc=elpa_kernel_descriptions)
     190        15442 :       CALL section_add_keyword(section, keyword)
     191        15442 :       CALL keyword_release(keyword)
     192              : 
     193              :       CALL keyword_create(keyword, __LOCATION__, name="ELPA_NEIGVEC_MIN", &
     194              :                           description="Minimum number of eigenvectors for the use of the eigensolver from "// &
     195              :                           "the ELPA library. The eigensolver from the ScaLAPACK library is used as fallback "// &
     196              :                           "for all smaller cases", &
     197              :                           usage="ELPA_NEIGVEC_MIN 32", &
     198        15442 :                           default_i_val=MIN(cp_fm_struct_get_nrow_block(), cp_fm_struct_get_ncol_block()))
     199        15442 :       CALL section_add_keyword(section, keyword)
     200        15442 :       CALL keyword_release(keyword)
     201              : 
     202              :       CALL keyword_create(keyword, __LOCATION__, name="ELPA_QR", &
     203              :                           description="For ELPA, enable a blocked QR step when reducing the input matrix "// &
     204              :                           "to banded form in preparation for the actual diagonalization step. "// &
     205              :                           "See implementation paper for more details. Requires ELPA version 201505 or newer, "// &
     206              :                           "automatically deactivated otherwise. If true, QR is activated only when the "// &
     207              :                           "the size of the diagonalized matrix is suitable. Print key PRINT_ELPA is "// &
     208              :                           "useful in determining which matrices are suitable for QR. Might accelerate the "// &
     209              :                           "diagonalization of suitable matrices.", &
     210              :                           usage="ELPA_QR", &
     211        15442 :                           default_l_val=elpa_qr, lone_keyword_l_val=.TRUE.)
     212        15442 :       CALL section_add_keyword(section, keyword)
     213        15442 :       CALL keyword_release(keyword)
     214              : 
     215              :       CALL keyword_create(keyword, __LOCATION__, name="ELPA_ONE_STAGE", &
     216              :                           description="For ELPA, enable the one-stage solver (instead of the two-stage solver). "// &
     217              :                           "Please note, ELPA_QR and ELPA_KERNEL settings may be ignored.", &
     218              :                           usage="ELPA_ONE_STAGE", &
     219        15442 :                           default_l_val=elpa_one_stage, lone_keyword_l_val=.TRUE.)
     220        15442 :       CALL section_add_keyword(section, keyword)
     221        15442 :       CALL keyword_release(keyword)
     222              : 
     223              :       CALL cp_print_key_section_create(print_key, __LOCATION__, "PRINT_ELPA", &
     224              :                                        description="Controls the printing of ELPA diagonalization information. "// &
     225              :                                        "Useful for testing purposes, especially together with keyword ELPA_QR.", &
     226        15442 :                                        filename="__STD_OUT__")
     227        15442 :       CALL section_add_subsection(section, print_key)
     228        15442 :       CALL section_release(print_key)
     229              : 
     230              :       CALL keyword_create(keyword, __LOCATION__, name="DLAF_NEIGVEC_MIN", &
     231              :                           description="Minimum number of eigenvectors for the use of the eigensolver from "// &
     232              :                           "the DLA-Future library. The eigensolver from the ScaLAPACK library is used as fallback "// &
     233              :                           "for all smaller cases", &
     234              :                           usage="DLAF_NEIGVEC_MIN 512", &
     235        15442 :                           default_i_val=1024)
     236        15442 :       CALL section_add_keyword(section, keyword)
     237        15442 :       CALL keyword_release(keyword)
     238              : 
     239              :       CALL keyword_create(keyword, __LOCATION__, name="DLAF_CHOLESKY_N_MIN", &
     240              :                           description="Minimum matrix size for the use of the Cholesky decomposition from "// &
     241              :                           "the DLA-Future library. The Cholesky decomposition from the ScaLAPACK library is used as fallback "// &
     242              :                           "for all smaller cases", &
     243              :                           usage="DLAF_CHOLESKY_N_MIN 512", &
     244        15442 :                           default_i_val=1024)
     245        15442 :       CALL section_add_keyword(section, keyword)
     246        15442 :       CALL keyword_release(keyword)
     247              : 
     248              :       CALL keyword_create( &
     249              :          keyword, __LOCATION__, name="PREFERRED_FFT_LIBRARY", &
     250              :          description="Specifies the FFT library which should be preferred. "// &
     251              :          "If it is not available, use FFTW3 if this is linked in, if FFTW3 is not available use FFTSG. "// &
     252              :          "Improved performance with FFTW3 can be obtained specifying a proper value for FFTW_PLAN_TYPE. "// &
     253              :          "Contrary to earlier CP2K versions, all libraries will result in the same grids, "// &
     254              :          "i.e. the subset of grids which all FFT libraries can transform. "// &
     255              :          "See EXTENDED_FFT_LENGTHS if larger FFTs or grids that more precisely match a given cutoff are needed, "// &
     256              :          "or older results need to be reproduced. "// &
     257              :          "FFTW3 is often (close to) optimal, and well tested with CP2K.", &
     258              :          usage="PREFERRED_FFT_LIBRARY FFTW3", &
     259              :          citations=[Frigo2005], &
     260              :          default_i_val=do_fft_fftw3, &
     261              :          enum_i_vals=[do_fft_sg, do_fft_fftw3, do_fft_fftw3], &
     262              :          enum_c_vals=s2a("FFTSG", "FFTW3", "FFTW"), &
     263              :          enum_desc=s2a("Stefan Goedecker's FFT (FFTSG), always available, "// &
     264              :                        "will be used in case a FFT library is specified and not available.", &
     265              :                        "a fast portable FFT library. Recommended. "// &
     266              :                        "See also the FFTW_PLAN_TYPE, and FFTW_WISDOM_FILE_NAME keywords.", &
     267        30884 :                        "Same as FFTW3 (for compatibility with CP2K 2.3)"))
     268        15442 :       CALL section_add_keyword(section, keyword)
     269        15442 :       CALL keyword_release(keyword)
     270              : 
     271              :       CALL keyword_create(keyword, __LOCATION__, name="FFTW_WISDOM_FILE_NAME", &
     272              :                           description="The name of the file that contains wisdom (pre-planned FFTs) for use with FFTW3. "// &
     273              :                           "Using wisdom can significantly speed up the FFTs (see the FFTW homepage for details). "// &
     274              :                           "Note that wisdom is not transferable between different computer (architectures). "// &
     275              :                           "Wisdom can be generated using the fftw-wisdom tool that is part of the fftw installation. "// &
     276              :                           "cp2k/tools/cp2k-wisdom is a script that contains some additional info, and can help "// &
     277              :                           "to generate a useful default for /etc/fftw/wisdom or particular values for a given simulation.", &
     278        15442 :                           usage="FFTW_WISDOM_FILE_NAME wisdom.dat", default_lc_val="/etc/fftw/wisdom")
     279        15442 :       CALL section_add_keyword(section, keyword)
     280        15442 :       CALL keyword_release(keyword)
     281              : 
     282              :       CALL keyword_create(keyword, __LOCATION__, name="FFTW_PLAN_TYPE", &
     283              :                           description="FFTW can have improved performance if it is allowed to plan with "// &
     284              :                           "explicit measurements which strategy is best for a given FFT. "// &
     285              :                           "While a plan based on measurements is generally faster, "// &
     286              :                           "differences in machine load will lead to different plans for the same input file, "// &
     287              :                           "and thus numerics for the FFTs will be slightly different from run to run. "// &
     288              :                           "PATIENT planning is recommended for long ab initio MD runs.", &
     289              :                           usage="FFTW_PLAN_TYPE PATIENT", &
     290              :                           citations=[Frigo2005], &
     291              :                           default_i_val=fftw_plan_estimate, &
     292              :                           enum_i_vals=[fftw_plan_estimate, fftw_plan_measure, fftw_plan_patient, fftw_plan_exhaustive], &
     293              :                           enum_c_vals=s2a("ESTIMATE", &
     294              :                                           "MEASURE", &
     295              :                                           "PATIENT", &
     296              :                                           "EXHAUSTIVE"), &
     297              :                           enum_desc=s2a("Quick estimate, no runtime measurements.", &
     298              :                                         "Quick measurement, somewhat faster FFTs.", &
     299              :                                         "Measurements trying a wider range of possibilities.", &
     300        30884 :                                         "Measurements trying all possibilities - use with caution."))
     301        15442 :       CALL section_add_keyword(section, keyword)
     302        15442 :       CALL keyword_release(keyword)
     303              : 
     304              :       CALL keyword_create(keyword, __LOCATION__, name="EXTENDED_FFT_LENGTHS", &
     305              :                           description="Use fft library specific values for the allows number of points in FFTs. "// &
     306              :                           "The default is to use the internal FFT lengths. For external fft libraries this may "// &
     307              :                           "create an error at the external library level, because the length provided by cp2k is "// &
     308              :                           "not supported by the external library. In this case switch on this keyword "// &
     309              :                           "to obtain, with certain fft libraries, lengths matching the external fft library lengths, or "// &
     310              :                           "larger allowed grids, or grids that more precisely match a given cutoff. "// &
     311              :                           "IMPORTANT NOTE: in this case, the actual grids used in CP2K depends on the FFT library. "// &
     312              :                           "A change of FFT library must therefore be considered equivalent to a change of basis, "// &
     313              :                           "which implies a change of total energy.", &
     314              :                           usage="EXTENDED_FFT_LENGTHS", &
     315        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     316        15442 :       CALL section_add_keyword(section, keyword)
     317        15442 :       CALL keyword_release(keyword)
     318              : 
     319              :       CALL keyword_create(keyword, __LOCATION__, name="FFT_POOL_SCRATCH_LIMIT", &
     320              :                           description="Limits the memory usage of the FFT scratch pool, potentially reducing efficiency a bit", &
     321        15442 :                           usage="FFT_POOL_SCRATCH_LIMIT {INTEGER}", default_i_val=15)
     322        15442 :       CALL section_add_keyword(section, keyword)
     323        15442 :       CALL keyword_release(keyword)
     324              : 
     325              :       CALL keyword_create(keyword, __LOCATION__, name="ALLTOALL_SGL", &
     326              :                           description="All-to-all communication (FFT) should use single precision", &
     327              :                           usage="ALLTOALL_SGL YES", &
     328        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     329        15442 :       CALL section_add_keyword(section, keyword)
     330        15442 :       CALL keyword_release(keyword)
     331              : 
     332              :       CALL keyword_create(keyword, __LOCATION__, name="PRINT_LEVEL", &
     333              :                           variants=["IOLEVEL"], &
     334              :                           description="How much output is written out.", &
     335              :                           usage="PRINT_LEVEL HIGH", &
     336              :                           default_i_val=medium_print_level, enum_c_vals= &
     337              :                           s2a("SILENT", "LOW", "MEDIUM", "HIGH", "DEBUG"), &
     338              :                           enum_desc=s2a("Almost no output", &
     339              :                                         "Little output", "Quite some output", "Lots of output", &
     340              :                                         "Everything is written out, useful for debugging purposes only"), &
     341              :                           enum_i_vals=[silent_print_level, low_print_level, medium_print_level, &
     342        30884 :                                        high_print_level, debug_print_level])
     343        15442 :       CALL section_add_keyword(section, keyword)
     344        15442 :       CALL keyword_release(keyword)
     345              : 
     346              :       CALL keyword_create( &
     347              :          keyword, __LOCATION__, name="PROGRAM_NAME", &
     348              :          variants=["PROGRAM"], &
     349              :          description="Which program should be run", &
     350              :          usage="PROGRAM_NAME {STRING}", &
     351              :          enum_c_vals=s2a("ATOM", "FARMING", "TEST", "CP2K", "OPTIMIZE_INPUT", "OPTIMIZE_BASIS", "TMC", "MC_ANALYSIS", "SWARM"), &
     352              :          enum_desc=s2a("Runs single atom calculations", &
     353              :                        "Runs N independent jobs in a single run", &
     354              :                        "Do some benchmarking and testing", &
     355              :                        "Runs one of the CP2K package", &
     356              :                        "A tool to optimize parameters in a CP2K input", &
     357              :                        "A tool to create a MOLOPT or ADMM basis for a given set"// &
     358              :                        " of training structures", &
     359              :                        "Runs Tree Monte Carlo algorithm using additional input file(s)", &
     360              :                        "Runs (Tree) Monte Carlo trajectory file analysis", &
     361              :                        "Runs swarm based calculation"), &
     362              :          enum_i_vals=[do_atom, do_farming, do_test, do_cp2k, do_optimize_input, &
     363              :                       do_opt_basis, do_tree_mc, do_tree_mc_ana, do_swarm], &
     364        30884 :          default_i_val=do_cp2k)
     365        15442 :       CALL section_add_keyword(section, keyword)
     366        15442 :       CALL keyword_release(keyword)
     367              : 
     368              :       CALL keyword_create(keyword, __LOCATION__, name="PROJECT_NAME", &
     369              :                           variants=["PROJECT"], &
     370              :                           description="Name of the project (used to build the name of the "// &
     371              :                           "trajectory, and other files generated by the program)", &
     372              :                           usage="PROJECT_NAME {STRING}", &
     373        30884 :                           default_c_val="PROJECT")
     374        15442 :       CALL section_add_keyword(section, keyword)
     375        15442 :       CALL keyword_release(keyword)
     376              : 
     377              :       CALL keyword_create(keyword, __LOCATION__, name="OUTPUT_FILE_NAME", &
     378              :                           description="Name of the output file. "// &
     379              :                           "Relevant only if automatically started (through farming for example). "// &
     380              :                           "If empty uses the project name as basis for it.", &
     381        15442 :                           usage="OUTPUT_FILE_NAME {filename}", default_lc_val="")
     382        15442 :       CALL section_add_keyword(section, keyword)
     383        15442 :       CALL keyword_release(keyword)
     384              : 
     385              :       CALL keyword_create( &
     386              :          keyword, __LOCATION__, name="RUN_TYPE", &
     387              :          description="Type of run that you want to perform Geometry "// &
     388              :          "optimization, md, montecarlo,...", &
     389              :          usage="RUN_TYPE MD", &
     390              :          default_i_val=energy_force_run, &
     391              :          citations=[Ceriotti2014, Schonherr2014], &
     392              :          enum_c_vals=s2a("NONE", "ENERGY", "ENERGY_FORCE", "MD", "GEO_OPT", &
     393              :                          "MC", "DEBUG", "BSSE", "LR", "PINT", "VIBRATIONAL_ANALYSIS", &
     394              :                          "BAND", "CELL_OPT", "WFN_OPT", "WAVEFUNCTION_OPTIMIZATION", &
     395              :                          "MOLECULAR_DYNAMICS", "GEOMETRY_OPTIMIZATION", "MONTECARLO", &
     396              :                          "LINEAR_RESPONSE", "NORMAL_MODES", "RT_PROPAGATION", &
     397              :                          "EHRENFEST_DYN", "TAMC", "TMC", "DRIVER", "NEGF", "MIMIC"), &
     398              :          enum_i_vals=[none_run, energy_run, energy_force_run, mol_dyn_run, &
     399              :                       geo_opt_run, mon_car_run, debug_run, &
     400              :                       bsse_run, linear_response_run, pint_run, vib_anal, do_band, &
     401              :                       cell_opt_run, energy_run, energy_run, mol_dyn_run, geo_opt_run, &
     402              :                       mon_car_run, linear_response_run, &
     403              :                       vib_anal, real_time_propagation, ehrenfest, do_tamc, tree_mc_run, &
     404              :                       driver_run, negf_run, mimic_run], &
     405              :          enum_desc=s2a("Perform no tasks", "Computes energy", "Computes energy and forces", &
     406              :                        "Molecular Dynamics", "Geometry Optimization", "Monte Carlo", &
     407              :                        "Performs a Debug analysis", "Basis set superposition error", "Linear Response", &
     408              :                        "Path integral", "Vibrational analysis", "Band methods", &
     409              :                        "Cell optimization. Both cell vectors and atomic positions are optimised.", &
     410              :                        "Alias for ENERGY", "Alias for ENERGY", "Alias for MD", "Alias for GEO_OPT", &
     411              :                        "Alias for MC", "Alias for LR", "Alias for VIBRATIONAL_ANALYSIS", &
     412              :                        "Real Time propagation run (fixed ionic positions)", &
     413              :                        "Ehrenfest dynamics (using real time propagation of the wavefunction)", &
     414              :                        "Temperature Accelerated Monte Carlo (TAMC)", &
     415              :                        "Tree Monte Carlo (TMC), a pre-sampling MC algorithm", &
     416              :                        "i-PI driver mode", &
     417              :                        "Non-equilibrium Green's function method", &
     418        46326 :                        "Run as a client in a simulation through the MiMiC framework"))
     419        15442 :       CALL section_add_keyword(section, keyword)
     420        15442 :       CALL keyword_release(keyword)
     421              : 
     422              :       CALL keyword_create(keyword, __LOCATION__, name="WALLTIME", &
     423              :                           variants=["WALLTI"], &
     424              :                           description="Maximum execution time for this run. Time in seconds or in HH:MM:SS.", &
     425        30884 :                           usage="WALLTIME {real} or {HH:MM:SS}", default_lc_val="")
     426        15442 :       CALL section_add_keyword(section, keyword)
     427        15442 :       CALL keyword_release(keyword)
     428              : 
     429              :       CALL keyword_create(keyword, __LOCATION__, name="ECHO_INPUT", &
     430              :                           description="If the input should be echoed to the output with all the "// &
     431              :                           "defaults made explicit", &
     432        15442 :                           usage="ECHO_INPUT NO", default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     433        15442 :       CALL section_add_keyword(section, keyword)
     434        15442 :       CALL keyword_release(keyword)
     435              : 
     436              :       CALL keyword_create(keyword, __LOCATION__, name="ECHO_ALL_HOSTS", &
     437              :                           description="Echo a list of hostname and pid for all MPI processes.", &
     438        15442 :                           usage="ECHO_ALL_HOSTS NO", default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     439        15442 :       CALL section_add_keyword(section, keyword)
     440        15442 :       CALL keyword_release(keyword)
     441              : 
     442              :       CALL keyword_create(keyword, __LOCATION__, name="ENABLE_MPI_IO", &
     443              :                           description="Enable MPI parallelization for all supported I/O routines "// &
     444              :                           "Currently, only cube file writer/reader routines use MPI I/O. Disabling "// &
     445              :                           "this flag might speed up calculations dominated by I/O.", &
     446        15442 :                           usage="ENABLE_MPI_IO FALSE", default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     447        15442 :       CALL section_add_keyword(section, keyword)
     448        15442 :       CALL keyword_release(keyword)
     449              : 
     450              :       CALL keyword_create(keyword, __LOCATION__, name="TRACE", &
     451              :                           description="If a debug trace of the execution of the program should be written", &
     452              :                           usage="TRACE", &
     453        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     454        15442 :       CALL section_add_keyword(section, keyword)
     455        15442 :       CALL keyword_release(keyword)
     456              : 
     457              :       CALL keyword_create(keyword, __LOCATION__, name="TRACE_MASTER", &
     458              :                           description="For parallel TRACEd runs: only the master node writes output.", &
     459              :                           usage="TRACE_MASTER", &
     460        15442 :                           default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     461        15442 :       CALL section_add_keyword(section, keyword)
     462        15442 :       CALL keyword_release(keyword)
     463              : 
     464              :       CALL keyword_create( &
     465              :          keyword, __LOCATION__, name="TRACE_MAX", &
     466              :          description="Limit the total number a given subroutine is printed in the trace. Accounting is not influenced.", &
     467        15442 :          usage="TRACE_MAX 100", default_i_val=HUGE(0))
     468        15442 :       CALL section_add_keyword(section, keyword)
     469        15442 :       CALL keyword_release(keyword)
     470              : 
     471              :       CALL keyword_create( &
     472              :          keyword, __LOCATION__, name="TRACE_ROUTINES", &
     473              :          description="A list of routines to trace. If left empty all routines are traced. Accounting is not influenced.", &
     474              :          usage="TRACE_ROUTINES {routine_name1} {routine_name2} ...", type_of_var=char_t, &
     475        15442 :          n_var=-1)
     476        15442 :       CALL section_add_keyword(section, keyword)
     477        15442 :       CALL keyword_release(keyword)
     478              : 
     479              :       CALL keyword_create( &
     480              :          keyword, __LOCATION__, name="FLUSH_SHOULD_FLUSH", &
     481              :          description="Flush output regularly, enabling this option might degrade performance significantly on certain machines.", &
     482              :          usage="FLUSH_SHOULD_FLUSH", &
     483        15442 :          default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     484        15442 :       CALL section_add_keyword(section, keyword)
     485        15442 :       CALL keyword_release(keyword)
     486              : 
     487              :       CALL keyword_create(keyword, __LOCATION__, name="CALLGRAPH", &
     488              :                           description="At the end of the run write a callgraph to file, "// &
     489              :                           "which contains detailed timing informations. "// &
     490              :                           "This callgraph can be viewed e.g. with the open-source program kcachegrind.", &
     491              :                           usage="CALLGRAPH {NONE|MASTER|ALL}", &
     492              :                           default_i_val=CALLGRAPH_NONE, lone_keyword_i_val=CALLGRAPH_MASTER, &
     493              :                           enum_c_vals=s2a("NONE", "MASTER", "ALL"), &
     494              :                           enum_desc=s2a("No callgraph gets written", &
     495              :                                         "Only the master process writes his callgraph", &
     496              :                                         "All processes write their callgraph (into a separate files)."), &
     497        15442 :                           enum_i_vals=[CALLGRAPH_NONE, CALLGRAPH_MASTER, CALLGRAPH_ALL])
     498        15442 :       CALL section_add_keyword(section, keyword)
     499        15442 :       CALL keyword_release(keyword)
     500              : 
     501              :       CALL keyword_create(keyword, __LOCATION__, name="CALLGRAPH_FILE_NAME", &
     502              :                           description="Name of the callgraph file, which is written at the end of the run. "// &
     503              :                           "If not specified the project name will be used as filename.", &
     504        15442 :                           usage="CALLGRAPH_FILE_NAME {filename}", default_lc_val="")
     505        15442 :       CALL section_add_keyword(section, keyword)
     506        15442 :       CALL keyword_release(keyword)
     507              : 
     508              :       CALL keyword_create(keyword, __LOCATION__, name="SEED", &
     509              :                           description="Initial seed for the global (pseudo)random number generator "// &
     510              :                           "to create a stream of normally Gaussian distributed random numbers. "// &
     511              :                           "Exactly 1 or 6 positive integer values are expected. A single value is "// &
     512              :                           "replicated to fill up the full seed array with 6 numbers.", &
     513              :                           n_var=-1, &
     514              :                           type_of_var=integer_t, &
     515              :                           usage="SEED {INTEGER} .. {INTEGER}", &
     516        15442 :                           default_i_vals=[2000])
     517        15442 :       CALL section_add_keyword(section, keyword)
     518        15442 :       CALL keyword_release(keyword)
     519              : 
     520              :       CALL keyword_create(keyword, __LOCATION__, name="SAVE_MEM", &
     521              :                           description="Some sections of the input structure are deallocated when not needed,"// &
     522              :                           " and reallocated only when used. This reduces the required maximum memory.", &
     523              :                           usage="SAVE_MEM", &
     524        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     525        15442 :       CALL section_add_keyword(section, keyword)
     526        15442 :       CALL keyword_release(keyword)
     527              : 
     528              :       CALL cp_print_key_section_create(print_key, __LOCATION__, "TIMINGS", description= &
     529              :                                        "Controls the printing of the timing report at the end of CP2K execution", &
     530        15442 :                                        print_level=silent_print_level, filename="__STD_OUT__")
     531              : 
     532              :       CALL keyword_create(keyword, __LOCATION__, name="THRESHOLD", &
     533              :                           description="Specify % of CPUTIME above which the contribution will be inserted in the"// &
     534              :                           " final timing report (e.g. 0.02 = 2%)", &
     535              :                           usage="THRESHOLD {REAL}", &
     536        15442 :                           default_r_val=0.02_dp)
     537        15442 :       CALL section_add_keyword(print_key, keyword)
     538        15442 :       CALL keyword_release(keyword)
     539              : 
     540              :       CALL keyword_create(keyword, __LOCATION__, name="SORT_BY_SELF_TIME", &
     541              :                           description="Sort the final timing report by the average self (exclusive) time instead of the "// &
     542              :                           "total (inclusive) time of a routine", &
     543              :                           usage="SORT_BY_SELF_TIME on", &
     544        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     545        15442 :       CALL section_add_keyword(print_key, keyword)
     546        15442 :       CALL keyword_release(keyword)
     547              : 
     548              :       CALL keyword_create(keyword, __LOCATION__, name="REPORT_MAXLOC", &
     549              :                           description="Report the rank with the slowest maximum self timing."// &
     550              :                           " Can be used to debug hard- or software."// &
     551              :                           " Also enables ECHO_ALL_HOSTS to link rank to hostname.", &
     552              :                           usage="REPORT_MAXLOC on", &
     553        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     554        15442 :       CALL section_add_keyword(print_key, keyword)
     555        15442 :       CALL keyword_release(keyword)
     556              : 
     557              :       CALL keyword_create(keyword, __LOCATION__, name="TIME_MPI", &
     558              :                           description="Include message_passing calls in the timing report (useful with CALLGRAPH).", &
     559              :                           usage="TIME_MPI .FALSE.", &
     560        15442 :                           default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     561        15442 :       CALL section_add_keyword(print_key, keyword)
     562        15442 :       CALL keyword_release(keyword)
     563              : 
     564              :       CALL keyword_create(keyword, __LOCATION__, name="TIMINGS_LEVEL", &
     565              :                           description="Specify the level of timings report. "// &
     566              :                           "Possible values are: 0 (report only CP2K root timer), 1 (all timers).", &
     567              :                           usage="TIMINGS_LEVEL 1", &
     568        15442 :                           default_i_val=default_timings_level, lone_keyword_i_val=default_timings_level)
     569        15442 :       CALL section_add_keyword(print_key, keyword)
     570        15442 :       CALL keyword_release(keyword)
     571              : 
     572        15442 :       CALL section_add_subsection(section, print_key)
     573        15442 :       CALL section_release(print_key)
     574              : 
     575              :       CALL cp_print_key_section_create(print_key, __LOCATION__, "REFERENCES", description= &
     576              :                                        "Controls the printing of the references relevant to the calculations performed", &
     577        15442 :                                        print_level=silent_print_level, filename="__STD_OUT__")
     578        15442 :       CALL section_add_subsection(section, print_key)
     579        15442 :       CALL section_release(print_key)
     580              : 
     581              :       CALL cp_print_key_section_create(print_key, __LOCATION__, "PROGRAM_RUN_INFO", &
     582              :                                        description="controls the printing of  initialization controlled by the global section", &
     583        15442 :                                        print_level=silent_print_level, add_last=add_last_numeric, filename="__STD_OUT__")
     584        15442 :       CALL section_add_subsection(section, print_key)
     585        15442 :       CALL section_release(print_key)
     586              : 
     587              :       CALL cp_print_key_section_create(print_key, __LOCATION__, "PRINT", description= &
     588              :                                        "controls the printing of physical and mathematical constants", &
     589        15442 :                                        print_level=medium_print_level, filename="__STD_OUT__")
     590              : 
     591              :       CALL keyword_create(keyword, __LOCATION__, name="BASIC_DATA_TYPES", &
     592              :                           description="Controls the printing of the basic data types.", &
     593        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     594        15442 :       CALL section_add_keyword(print_key, keyword)
     595        15442 :       CALL keyword_release(keyword)
     596              :       CALL keyword_create(keyword, __LOCATION__, name="physcon", &
     597              :                           description="if the printkey is active prints the physical constants", &
     598        15442 :                           default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     599        15442 :       CALL section_add_keyword(print_key, keyword)
     600        15442 :       CALL keyword_release(keyword)
     601              :       CALL keyword_create(keyword, __LOCATION__, name="SPHERICAL_HARMONICS", &
     602              :                           description="if the printkey is active prints the spherical harmonics", &
     603        15442 :                           default_i_val=-1, type_of_var=integer_t)
     604        15442 :       CALL section_add_keyword(print_key, keyword)
     605        15442 :       CALL keyword_release(keyword)
     606              :       CALL keyword_create(keyword, __LOCATION__, name="RNG_MATRICES", &
     607              :                           description="Prints the transformation matrices used by the  random number generator", &
     608              :                           default_l_val=.FALSE., &
     609        15442 :                           lone_keyword_l_val=.TRUE.)
     610        15442 :       CALL section_add_keyword(print_key, keyword)
     611        15442 :       CALL keyword_release(keyword)
     612              :       CALL keyword_create(keyword, __LOCATION__, name="RNG_CHECK", &
     613              :                           description="Performs a check of the global (pseudo)random "// &
     614              :                           "number generator (RNG) and prints the result", &
     615              :                           default_l_val=.FALSE., &
     616        15442 :                           lone_keyword_l_val=.TRUE.)
     617        15442 :       CALL section_add_keyword(print_key, keyword)
     618        15442 :       CALL keyword_release(keyword)
     619              :       CALL keyword_create(keyword, __LOCATION__, name="GLOBAL_GAUSSIAN_RNG", &
     620              :                           description="Prints the initial status of the global Gaussian "// &
     621              :                           "(pseudo)random number stream which is mostly used for "// &
     622              :                           "the velocity initialization", &
     623              :                           default_l_val=.FALSE., &
     624        15442 :                           lone_keyword_l_val=.TRUE.)
     625        15442 :       CALL section_add_keyword(print_key, keyword)
     626        15442 :       CALL keyword_release(keyword)
     627              : 
     628        15442 :       CALL section_add_subsection(section, print_key)
     629        15442 :       CALL section_release(print_key)
     630        15442 :       NULLIFY (sub_section)
     631              :       ! FM section
     632        15442 :       CALL create_fm_section(sub_section)
     633        15442 :       CALL section_add_subsection(section, sub_section)
     634        15442 :       CALL section_release(sub_section)
     635              :       ! DBCSR options
     636        15442 :       CALL create_dbcsr_section(sub_section)
     637        15442 :       CALL section_add_subsection(section, sub_section)
     638        15442 :       CALL section_release(sub_section)
     639              :       ! FM diagonalization redistribution rules
     640        15442 :       CALL create_fm_diag_rules_section(sub_section)
     641        15442 :       CALL section_add_subsection(section, sub_section)
     642        15442 :       CALL section_release(sub_section)
     643              :       ! Grid library
     644        15442 :       CALL create_grid_section(sub_section)
     645        15442 :       CALL section_add_subsection(section, sub_section)
     646        15442 :       CALL section_release(sub_section)
     647              : 
     648        15442 :    END SUBROUTINE create_global_section
     649              : 
     650              : ! **************************************************************************************************
     651              : !> \brief   Creates the dbcsr section for configuring FM
     652              : !> \param section ...
     653              : !> \date    2011-04-05
     654              : !> \author  Florian Schiffmann
     655              : ! **************************************************************************************************
     656        15442 :    SUBROUTINE create_fm_section(section)
     657              :       TYPE(section_type), POINTER                        :: section
     658              : 
     659              :       INTEGER                                            :: default_matmul
     660              :       TYPE(keyword_type), POINTER                        :: keyword
     661              : 
     662        15442 :       CPASSERT(.NOT. ASSOCIATED(section))
     663              :       CALL section_create(section, __LOCATION__, name="FM", &
     664              :                           description="Configuration options for the full matrices.", &
     665        15442 :                           n_keywords=1, n_subsections=0, repeats=.FALSE.)
     666              : 
     667        15442 :       NULLIFY (keyword)
     668              : 
     669              :       CALL keyword_create(keyword, __LOCATION__, name="NROW_BLOCKS", &
     670              :                           description="Defines the number of rows per scalapack block in "// &
     671              :                           "the creation of block cyclic dense matrices. "// &
     672              :                           "Use an internal default if zero or negative.", &
     673        15442 :                           default_i_val=cp_fm_struct_get_nrow_block())
     674        15442 :       CALL section_add_keyword(section, keyword)
     675        15442 :       CALL keyword_release(keyword)
     676              : 
     677              :       CALL keyword_create(keyword, __LOCATION__, name="NCOL_BLOCKS", &
     678              :                           description="Defines the number of columns per scalapack block in "// &
     679              :                           "the creation of vlock cyclic dense matrices. "// &
     680              :                           "Use an internal default if zero or negative.", &
     681        15442 :                           default_i_val=cp_fm_struct_get_ncol_block())
     682        15442 :       CALL section_add_keyword(section, keyword)
     683        15442 :       CALL keyword_release(keyword)
     684              : 
     685              :       CALL keyword_create(keyword, __LOCATION__, name="FORCE_BLOCK_SIZE", &
     686              :                           description="Ensure for small matrices that the layout is compatible "// &
     687              :                           "with bigger ones, i.e. no subdivision is performed (can break LAPACK).", &
     688              :                           usage="FORCE_BLOCK_SIZE", &
     689        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     690        15442 :       CALL section_add_keyword(section, keyword)
     691        15442 :       CALL keyword_release(keyword)
     692              : 
     693              : #if defined(__COSMA)
     694        15442 :       default_matmul = do_cosma
     695              : #else
     696              :       default_matmul = do_scalapack
     697              : #endif
     698              : 
     699              :       CALL keyword_create(keyword, __LOCATION__, name="TYPE_OF_MATRIX_MULTIPLICATION", &
     700              :                           description="Allows to switch between scalapack pxgemm and COSMA pxgemm. "// &
     701              :                           "COSMA reduces the communication costs but increases the memory demands. "// &
     702              :                           "The performance of Scalapack's pxgemm on GPU's depends "// &
     703              :                           "crucially on the BLOCK_SIZES. Make sure optimized kernels are available.", &
     704              :                           default_i_val=default_matmul, &
     705              :                           enum_i_vals=[do_scalapack, do_scalapack, do_cosma], &
     706              :                           enum_c_vals=s2a("SCALAPACK", "PDGEMM", "COSMA"), &
     707              :                           enum_desc=s2a("Standard ScaLAPACK pdgemm", &
     708              :                                         "Alias for ScaLAPACK", &
     709        15442 :                                         "COSMA is employed. See <https://github.com/eth-cscs/COSMA>."))
     710        15442 :       CALL section_add_keyword(section, keyword)
     711        15442 :       CALL keyword_release(keyword)
     712              : 
     713              :       !
     714        15442 :    END SUBROUTINE create_fm_section
     715              : ! **************************************************************************************************
     716              : !> \brief   Creates the input section used to define the heuristic rules which determine if
     717              : !>          a FM matrix should be redistributed before diagonalizing it.
     718              : !> \param section the input section to create
     719              : !> \author Nico Holmberg [01.2018]
     720              : ! **************************************************************************************************
     721        15442 :    SUBROUTINE create_fm_diag_rules_section(section)
     722              :       TYPE(section_type), POINTER                        :: section
     723              : 
     724              :       TYPE(keyword_type), POINTER                        :: keyword
     725              : 
     726        15442 :       CPASSERT(.NOT. ASSOCIATED(section))
     727              :       CALL section_create(section, __LOCATION__, name="FM_DIAG_SETTINGS", &
     728              :                           description="This section defines a set of heuristic rules which are "// &
     729              :                           "used to calculate the optimal number of CPUs, M, needed to diagonalize a "// &
     730              :                           "full matrix distributed on N processors (FM type). If M &lt N, the matrix "// &
     731              :                           "is redistributed onto M processors before it is diagonalized. "// &
     732              :                           "The optimal value is calculate according to M = ((K+a*x-1)/(a*x))*a, "// &
     733              :                           "where K is the size of the matrix, and {a, x} are integers defined below. "// &
     734              :                           "The default values have been selected based on timings on a Cray XE6. "// &
     735              :                           "Supports diagonalization libraries SL and ELPA (see keyword ELPA_FORCE_REDISTRIBUTE).", &
     736        15442 :                           n_keywords=3, n_subsections=0, repeats=.FALSE.)
     737              : 
     738        15442 :       NULLIFY (keyword)
     739              : 
     740              :       CALL keyword_create(keyword, __LOCATION__, name="PARAMETER_A", &
     741              :                           description="Parameter used for defining the rule which determines the optimal "// &
     742              :                           "number of CPUs needed to diagonalize a full distributed matrix. The optimal "// &
     743              :                           "number of CPUs will be an integer multiple of this variable.", &
     744              :                           usage="PARAMETER_A 4", type_of_var=integer_t, &
     745        15442 :                           default_i_val=4)
     746        15442 :       CALL section_add_keyword(section, keyword)
     747        15442 :       CALL keyword_release(keyword)
     748              : 
     749              :       CALL keyword_create(keyword, __LOCATION__, name="PARAMETER_X", &
     750              :                           description="Parameter used for defining the rule which determines the optimal "// &
     751              :                           "number of CPUs needed to diagonalize a full distributed matrix. The optimal "// &
     752              :                           "number of CPUs will be roughly proportional to this value.", &
     753              :                           usage="PARAMETER_X 60", type_of_var=integer_t, &
     754        15442 :                           default_i_val=60)
     755        15442 :       CALL section_add_keyword(section, keyword)
     756        15442 :       CALL keyword_release(keyword)
     757              : 
     758              :       CALL keyword_create(keyword, __LOCATION__, name="PRINT_FM_REDISTRIBUTE", &
     759              :                           description="Controls printing of information related to this section. For each "// &
     760              :                           "diagonalized matrix, prints the size of the matrix, the optimal number of CPUs, "// &
     761              :                           "as well as notifies if the matrix was redistributed. Useful for testing.", &
     762              :                           usage="PRINT_FM_REDISTRIBUTE", type_of_var=logical_t, &
     763        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     764        15442 :       CALL section_add_keyword(section, keyword)
     765        15442 :       CALL keyword_release(keyword)
     766              : 
     767              :       CALL keyword_create(keyword, __LOCATION__, name="ELPA_FORCE_REDISTRIBUTE", &
     768              :                           description="Controls how to perform redistribution when ELPA is used for diagonalization. "// &
     769              :                           "By default, redistribution is always performed using the defined rules. "// &
     770              :                           "By turning off this keyword, matrices are redistributed only to prevent crashes in the ELPA "// &
     771              :                           "library which happens when the original matrix is distributed over too many processors.", &
     772              :                           usage="ELPA_FORCE_REDISTRIBUTE", type_of_var=logical_t, &
     773        15442 :                           default_l_val=.TRUE., lone_keyword_l_val=.TRUE.)
     774        15442 :       CALL section_add_keyword(section, keyword)
     775        15442 :       CALL keyword_release(keyword)
     776              : 
     777        15442 :    END SUBROUTINE create_fm_diag_rules_section
     778              : 
     779              : ! **************************************************************************************************
     780              : !> \brief Creates the section for configuring the grid library
     781              : !> \param section ...
     782              : !> \author Ole Schuett
     783              : ! **************************************************************************************************
     784        15442 :    SUBROUTINE create_grid_section(section)
     785              :       TYPE(section_type), POINTER                        :: section
     786              : 
     787              :       TYPE(keyword_type), POINTER                        :: keyword
     788              : 
     789        15442 :       CPASSERT(.NOT. ASSOCIATED(section))
     790              :       CALL section_create(section, __LOCATION__, name="GRID", &
     791              :                           description="Configuration options for the grid library, "// &
     792              :                           "which performs e.g. the collocate and integrate of the GPW method.", &
     793        15442 :                           n_keywords=1, n_subsections=0, repeats=.FALSE.)
     794              : 
     795        15442 :       NULLIFY (keyword)
     796              :       CALL keyword_create(keyword, __LOCATION__, name="BACKEND", &
     797              :                           description="Selects the backed used by the grid library.", &
     798              :                           default_i_val=GRID_BACKEND_AUTO, &
     799              :                           enum_i_vals=[GRID_BACKEND_AUTO, GRID_BACKEND_REF, GRID_BACKEND_CPU, &
     800              :                                        GRID_BACKEND_DGEMM, GRID_BACKEND_GPU, GRID_BACKEND_HIP], &
     801              :                           enum_c_vals=s2a("AUTO", "REFERENCE", "CPU", "DGEMM", "GPU", "HIP"), &
     802              :                           enum_desc=s2a("Let the grid library pick the backend automatically", &
     803              :                                         "Reference backend implementation", &
     804              :                                         "Optimized CPU backend", &
     805              :                                         "Alternative CPU backend based on DGEMM", &
     806              :                                         "GPU backend optimized for CUDA that also supports HIP", &
     807        15442 :                                         "HIP backend optimized for ROCm"))
     808        15442 :       CALL section_add_keyword(section, keyword)
     809        15442 :       CALL keyword_release(keyword)
     810              : 
     811              :       CALL keyword_create(keyword, __LOCATION__, name="VALIDATE", &
     812              :                           description="When enabled the reference backend is run in shadow mode "// &
     813              :                           "and its results are compared with those from the selected backend. "// &
     814              :                           "If the two results differ by too much then the calculation is aborted.", &
     815        15442 :                           default_l_val=.FALSE., lone_keyword_l_val=.TRUE.)
     816        15442 :       CALL section_add_keyword(section, keyword)
     817        15442 :       CALL keyword_release(keyword)
     818              : 
     819              :       CALL keyword_create(keyword, __LOCATION__, name="APPLY_CUTOFF", &
     820              :                           description="When enabled the cpu backend "// &
     821              :                           "apply a spherical cutoff on the top of the cube. "// &
     822              :                           "There is a performance penalty using it in "// &
     823              :                           "combination with the cpu backend but it is on by "// &
     824              :                           "default for the regtests", default_l_val=.TRUE., &
     825        15442 :                           lone_keyword_l_val=.TRUE.)
     826        15442 :       CALL section_add_keyword(section, keyword)
     827        15442 :       CALL keyword_release(keyword)
     828              : 
     829        15442 :    END SUBROUTINE create_grid_section
     830              : 
     831              : END MODULE input_cp2k_global
        

Generated by: LCOV version 2.0-1