125#include "./base/base_uses.f90"
131 CHARACTER(len=*),
PARAMETER,
PRIVATE :: moduleN =
'environment'
152 SUBROUTINE cp2k_init(para_env, output_unit, globenv, input_file_name, wdir)
155 INTEGER :: output_unit
157 CHARACTER(LEN=*) :: input_file_name
158 CHARACTER(LEN=*),
OPTIONAL :: wdir
160 CHARACTER(LEN=10*default_string_length) :: cp_flags
161 INTEGER :: i, ilen, my_output_unit
172 IF (para_env%is_source())
THEN
173 my_output_unit = output_unit
179 default_global_unit_nr=output_unit, &
180 close_global_unit_on_dealloc=.false.)
190 IF (my_output_unit > 0)
THEN
191 WRITE (unit=my_output_unit, fmt=
"(/,T2,A,T31,A50)") &
193 WRITE (unit=my_output_unit, fmt=
"(T2,A,T41,A40)") &
194 "CP2K| source code revision number:", &
197 ilen = len_trim(cp_flags)
198 WRITE (unit=my_output_unit, fmt=
"(T2,A)") &
199 "CP2K| "//cp_flags(1:73)
201 DO i = 0, (ilen - 75)/61
202 WRITE (unit=my_output_unit, fmt=
"(T2,A)") &
203 "CP2K| "//trim(cp_flags(74 + i*61:min(74 + (i + 1)*61, ilen)))
206 WRITE (unit=my_output_unit, fmt=
"(T2,A,T41,A40)") &
207 "CP2K| is freely available from ", &
209 WRITE (unit=my_output_unit, fmt=
"(T2,A,T31,A50)") &
210 "CP2K| Program compiled at", &
212 WRITE (unit=my_output_unit, fmt=
"(T2,A,T31,A50)") &
213 "CP2K| Program compiled on", &
215 WRITE (unit=my_output_unit, fmt=
"(T2,A,T31,A50)") &
216 "CP2K| Program compiled for", &
218 WRITE (unit=my_output_unit, fmt=
"(T2,A,T31,A50)") &
219 "CP2K| Data directory path", &
221 WRITE (unit=my_output_unit, fmt=
"(T2,A,T31,A50)") &
222 "CP2K| Input file name", &
223 adjustr(trim(input_file_name))
224 FLUSH (my_output_unit)
227#if defined(__FAST_MATH__)
228 CALL cp_warn(__location__, &
229 "During compilation one of the following flags was active:"// &
230 " `-ffast-math` (GCC)"// &
231 " `-hfpN` (Cray, N > 0, default N=2)"// &
232 " This can lead to wrong results and numerical instabilities"// &
233 " and is therefore no longer supported.")
235#if !defined(__FORCE_USE_FAST_MATH)
236#error "-ffast-math (GCC) or -hfpN (N>0, Cray) can lead to wrong results and numerical instabilities and are therefore no longer supported"
241#error "Please do not build CP2K with NDEBUG. There is no performance advantage and asserts will save your neck."
251 SUBROUTINE echo_all_hosts(para_env, output_unit)
253 INTEGER,
INTENT(IN) :: output_unit
255 CHARACTER(LEN=default_string_length) :: string
257 INTEGER,
ALLOCATABLE,
DIMENSION(:) :: all_pid
258 INTEGER,
ALLOCATABLE,
DIMENSION(:, :) :: all_host
262 ALLOCATE (all_pid(para_env%num_pe), source=0)
263 all_pid(para_env%mepos + 1) =
r_pid
265 CALL para_env%sum(all_pid)
266 ALLOCATE (all_host(30, para_env%num_pe), source=0)
269 CALL para_env%sum(all_host)
270 IF (output_unit > 0)
THEN
271 WRITE (unit=output_unit, fmt=
"(T2,A)")
""
272 DO ipe = 1, para_env%num_pe
274 WRITE (unit=output_unit, fmt=
"(T2,A,T63,I8,T71,I10)") &
276 " has created rank and process ", ipe - 1, all_pid(ipe)
281 DEALLOCATE (all_host)
283 END SUBROUTINE echo_all_hosts
291 SUBROUTINE echo_all_process_host(para_env, output_unit, node_count)
293 INTEGER,
INTENT(IN) :: output_unit
294 INTEGER,
INTENT(OUT),
OPTIONAL :: node_count
296 CHARACTER(LEN=default_string_length) :: string, string_sec
297 INTEGER :: ipe, jpe, nr_dist, nr_occu
298 INTEGER,
ALLOCATABLE,
DIMENSION(:) :: all_pid
299 INTEGER,
ALLOCATABLE,
DIMENSION(:, :) :: all_host
301 ALLOCATE (all_host(30, para_env%num_pe), source=0)
302 ALLOCATE (all_pid(para_env%num_pe), source=0)
306 CALL para_env%sum(all_host)
310 IF (output_unit > 0)
WRITE (unit=output_unit, fmt=
"(T2,A)")
""
311 DO ipe = 1, para_env%num_pe
313 IF (all_pid(ipe) /= -1)
THEN
315 DO jpe = 1, para_env%num_pe
317 IF (string == string_sec)
THEN
318 nr_occu = nr_occu + 1
322 IF (output_unit > 0)
THEN
323 WRITE (unit=output_unit, fmt=
"(T2,A,T63,I8,A)") &
325 " is running ", nr_occu,
" processes"
327 nr_dist = nr_dist + 1
332 DEALLOCATE (all_host)
334 cpassert(0 < nr_dist)
335 IF (
PRESENT(node_count)) node_count = nr_dist
337 END SUBROUTINE echo_all_process_host
358 CHARACTER(LEN=3*default_string_length) :: message
359 CHARACTER(LEN=default_string_length) :: c_val
370 IF (c_val /=
"")
THEN
372 local_filename=trim(c_val)//
"_localLog")
377 IF (index(c_val(:len_trim(c_val)),
" ") > 0)
THEN
378 message =
"Project name <"//trim(c_val)// &
379 "> contains spaces which will be replaced with underscores"
380 cpwarn(trim(message))
381 DO i = 1, len_trim(c_val)
383 IF (c_val(i:i) ==
" ") c_val(i:i) =
"_"
387 IF (c_val /=
"")
THEN
388 CALL cp_logger_set(logger, local_filename=trim(c_val)//
"_localLog")
390 logger%iter_info%project_name = c_val
392 CALL section_vals_val_get(root_section,
"GLOBAL%PRINT_LEVEL", i_val=logger%iter_info%print_level)
395 CALL read_cp2k_section(root_section, para_env, globenv)
401 "GLOBAL%PRINT/BASIC_DATA_TYPES")
407 "GLOBAL%PRINT/PHYSCON")
428 INTEGER,
DIMENSION(:),
POINTER :: seed_vals
429 REAL(kind=
dp),
DIMENSION(3, 2) :: initial_seed
444 "GLOBAL%PRINT/RNG_MATRICES")
449 IF (
SIZE(seed_vals) == 1)
THEN
450 initial_seed(:, :) = real(seed_vals(1), kind=
dp)
451 ELSE IF (
SIZE(seed_vals) == 6)
THEN
452 initial_seed(1:3, 1:2) = reshape(real(seed_vals(:), kind=
dp), [3, 2])
454 cpabort(
"Supply exactly 1 or 6 arguments for SEED in &GLOBAL only!")
458 name=
"Global Gaussian random numbers", &
461 extended_precision=.true.)
470 "GLOBAL%PRINT/RNG_CHECK")
475 CALL globenv%gaussian_rng_stream%write(iw, write_all=.true.)
478 "GLOBAL%PRINT/GLOBAL_GAUSSIAN_RNG")
506 SUBROUTINE read_global_section(root_section, para_env, globenv)
512 CHARACTER(LEN=6),
PARAMETER :: start_section_label =
"GLOBAL"
514 CHARACTER(LEN=13) :: omp_stacksize, tracing_string
515 CHARACTER(LEN=6) :: print_level_string
516 CHARACTER(LEN=default_path_length) :: basis_set_file_name, coord_file_name, &
517 mm_potential_file_name, &
519 CHARACTER(LEN=default_string_length) :: env_num, model_name, project_name
520 CHARACTER(LEN=default_string_length), &
521 DIMENSION(:),
POINTER :: trace_routines
522 INTEGER :: cpuid, cpuid_static, i_cholesky, i_dgemm, i_diag, i_fft, i_grid_backend, &
523 iforce_eval, method_name_id, n_rep_val, nforce_eval, node_count, num_threads, &
524 output_unit, print_level, trace_max, unit_nr
525 INTEGER(kind=int_8) :: buffers, buffers_avr, buffers_max, buffers_min, cached, cached_avr, &
526 cached_max, cached_min, memfree, memfree_avr, memfree_max, memfree_min, memlikelyfree, &
527 memlikelyfree_avr, memlikelyfree_max, memlikelyfree_min, memtotal, memtotal_avr, &
528 memtotal_max, memtotal_min, slab, slab_avr, slab_max, slab_min, sreclaimable, &
529 sreclaimable_avr, sreclaimable_max, sreclaimable_min
530 INTEGER,
DIMENSION(:),
POINTER :: i_force_eval
531 LOGICAL :: ata, do_echo_all_hosts, efl, explicit, &
532 flag, report_maxloc, trace, &
539 global_section, qmmm_section, &
542 NULLIFY (dft_section, global_section, i_force_eval)
550 l_val=globenv%direct_generalized_diagonalization)
562 CALL section_vals_val_get(global_section,
"DLAF_CHOLESKY_N_MIN", i_val=globenv%dlaf_cholesky_n_min)
566 CALL section_vals_val_get(global_section,
"FFT_POOL_SCRATCH_LIMIT", i_val=globenv%fft_pool_scratch_limit)
569 CALL section_vals_val_get(global_section,
"FFTW_WISDOM_FILE_NAME", c_val=globenv%fftw_wisdom_file_name)
572 walltime=globenv%cp2k_target_time)
580 NULLIFY (trace_routines)
586 do_echo_all_hosts = do_echo_all_hosts .OR. report_maxloc
592 CALL fm_setup(global_section)
593 CALL fm_diag_rules_setup(global_section)
594 CALL dgemm_setup(global_section)
596 IF (trace .AND. (.NOT. trace_master .OR. para_env%mepos == 0))
THEN
598 IF (logger%para_env%is_source() .OR. .NOT. trace_master) &
600 WRITE (tracing_string,
"(I6.6,A1,I6.6)") para_env%mepos,
":", para_env%num_pe
601 IF (
ASSOCIATED(trace_routines))
THEN
612 globenv%diag_library =
"ScaLAPACK"
614 globenv%diag_library =
"ELPA"
617 globenv%diag_library =
"cuSOLVER"
619 globenv%diag_library =
"DLAF"
622 cpabort(
"Unknown diagonalization library specified")
625 SELECT CASE (i_cholesky)
627 globenv%cholesky_library =
"ScaLAPACK"
630 globenv%cholesky_library =
"DLAF"
635 cpabort(
"Unknown Cholesky decomposition library specified")
640 globenv%default_fft_library =
"FFTSG"
642 globenv%default_fft_library =
"FFTW3"
645 cpabort(
"Unknown FFT library specified")
648 SELECT CASE (i_dgemm)
650 globenv%default_dgemm_library =
"SPLA"
652 globenv%default_dgemm_library =
"BLAS"
654 cpabort(
"Unknown DGEMM library specified")
657 IF (globenv%run_type_id == 0)
THEN
658 SELECT CASE (globenv%prog_name_id)
662 IF (nforce_eval /= 1)
THEN
668 SELECT CASE (method_name_id)
683 cpabort(
"FARMING program supports only NONE as run type")
686 IF (globenv%prog_name_id ==
do_test .AND. globenv%run_type_id /=
none_run) &
687 cpabort(
"TEST program supports only NONE as run type")
689 CALL m_memory_details(memtotal, memfree, buffers, cached, slab, sreclaimable, memlikelyfree)
690 memtotal_avr = memtotal
691 memfree_avr = memfree
692 buffers_avr = buffers
695 sreclaimable_avr = sreclaimable
696 memlikelyfree_avr = memlikelyfree
697 CALL para_env%sum(memtotal_avr); memtotal_avr = memtotal_avr/para_env%num_pe/1024
698 CALL para_env%sum(memfree_avr); memfree_avr = memfree_avr/para_env%num_pe/1024
699 CALL para_env%sum(buffers_avr); buffers_avr = buffers_avr/para_env%num_pe/1024
700 CALL para_env%sum(cached_avr); cached_avr = cached_avr/para_env%num_pe/1024
701 CALL para_env%sum(slab_avr); slab_avr = slab_avr/para_env%num_pe/1024
702 CALL para_env%sum(sreclaimable_avr); sreclaimable_avr = sreclaimable_avr/para_env%num_pe/1024
703 CALL para_env%sum(memlikelyfree_avr); memlikelyfree_avr = memlikelyfree_avr/para_env%num_pe/1024
705 memtotal_min = -memtotal
706 memfree_min = -memfree
707 buffers_min = -buffers
710 sreclaimable_min = -sreclaimable
711 memlikelyfree_min = -memlikelyfree
712 CALL para_env%max(memtotal_min); memtotal_min = -memtotal_min/1024
713 CALL para_env%max(memfree_min); memfree_min = -memfree_min/1024
714 CALL para_env%max(buffers_min); buffers_min = -buffers_min/1024
715 CALL para_env%max(cached_min); cached_min = -cached_min/1024
716 CALL para_env%max(slab_min); slab_min = -slab_min/1024
717 CALL para_env%max(sreclaimable_min); sreclaimable_min = -sreclaimable_min/1024
718 CALL para_env%max(memlikelyfree_min); memlikelyfree_min = -memlikelyfree_min/1024
720 memtotal_max = memtotal
721 memfree_max = memfree
722 buffers_max = buffers
725 sreclaimable_max = sreclaimable
726 memlikelyfree_max = memlikelyfree
727 CALL para_env%max(memtotal_max); memtotal_max = memtotal_max/1024
728 CALL para_env%max(memfree_max); memfree_max = memfree_max/1024
729 CALL para_env%max(buffers_max); buffers_max = buffers_max/1024
730 CALL para_env%max(cached_max); cached_max = cached_max/1024
731 CALL para_env%max(slab_max); slab_max = slab_max/1024
732 CALL para_env%max(sreclaimable_max); sreclaimable_max = sreclaimable_max/1024
733 CALL para_env%max(memlikelyfree_max); memlikelyfree_max = memlikelyfree_max/1024
735 memtotal = memtotal/1024
736 memfree = memfree/1024
737 buffers = buffers/1024
740 sreclaimable = sreclaimable/1024
741 memlikelyfree = memlikelyfree/1024
745 IF (do_echo_all_hosts)
THEN
746 CALL echo_all_hosts(para_env, output_unit)
749 CALL echo_all_process_host(para_env, output_unit, node_count)
751 CALL echo_all_process_host(para_env, 0, node_count)
756 IF (output_unit > 0)
THEN
757 WRITE (unit=output_unit, fmt=*)
758 CALL multiple_fe_list(force_env_sections, root_section, i_force_eval, nforce_eval)
759 DO iforce_eval = 1, nforce_eval
761 i_rep_section=i_force_eval(iforce_eval))
763 i_rep_section=i_force_eval(iforce_eval))
765 c_val=basis_set_file_name)
767 c_val=potential_file_name)
770 c_val=mm_potential_file_name)
773 i_rep_section=i_force_eval(iforce_eval))
775 coord_file_name =
"__STD_INPUT__"
779 IF (n_rep_val == 1)
THEN
781 c_val=coord_file_name)
786 WRITE (unit=output_unit, fmt=
"(T2,A,T41,A)") &
787 start_section_label//
"| Force Environment number", &
788 adjustr(env_num(:40)), &
789 start_section_label//
"| Basis set file name", &
790 adjustr(basis_set_file_name(:40)), &
791 start_section_label//
"| Potential file name", &
792 adjustr(potential_file_name(:40)), &
793 start_section_label//
"| MM Potential file name", &
794 adjustr(mm_potential_file_name(:40)), &
795 start_section_label//
"| Coordinate file name", &
796 adjustr(coord_file_name(:40))
798 DEALLOCATE (i_force_eval)
800 NULLIFY (enum1, enum2, keyword, section)
807 WRITE (unit=output_unit, fmt=
"(T2,A,T41,A40)") &
808 start_section_label//
"| Method name", &
809 adjustr(trim(
enum_i2c(enum1, globenv%prog_name_id))), &
810 start_section_label//
"| Project name", &
811 adjustr(project_name(:40)), &
812 start_section_label//
"| Run type", &
813 adjustr(trim(
enum_i2c(enum2, globenv%run_type_id))), &
814 start_section_label//
"| FFT library", &
815 adjustr(globenv%default_fft_library(:40)), &
816 start_section_label//
"| Diagonalization library", &
817 adjustr(globenv%diag_library(:40)), &
818 start_section_label//
"| Cholesky decomposition library", &
819 adjustr(globenv%cholesky_library(:40)), &
820 start_section_label//
"| DGEMM library", &
821 adjustr(globenv%default_dgemm_library(:40))
823 IF (globenv%diag_library ==
"ELPA")
THEN
824 WRITE (unit=output_unit, fmt=
"(T2,A,T71,I10)") &
825 start_section_label//
"| Minimum number of eigenvectors for ELPA usage", &
826 globenv%elpa_neigvec_min
829 IF (globenv%diag_library ==
"DLAF")
THEN
830 WRITE (unit=output_unit, fmt=
"(T2,A,T71,I10)") &
831 start_section_label//
"| Minimum number of eigenvectors for DLAF usage", &
832 globenv%dlaf_neigvec_min
835 IF (globenv%diag_library ==
"cuSOLVER" .OR. globenv%diag_library ==
"ScaLAPACK" .OR. &
836 globenv%diag_library ==
"DLAF")
THEN
837 WRITE (unit=output_unit, fmt=
"(T2,A,T71,L10)") &
838 start_section_label//
"| Direct generalized diagonalization requested", &
839 globenv%direct_generalized_diagonalization
842 IF (globenv%diag_library ==
"cuSOLVER")
THEN
843 WRITE (unit=output_unit, fmt=
"(T2,A,T71,I10)") &
844 start_section_label//
"| Minimum matrix size for cuSOLVER diagonalization", &
848 IF (globenv%cholesky_library ==
"DLAF")
THEN
849 WRITE (unit=output_unit, fmt=
"(T2,A,T71,I10)") &
850 start_section_label//
"| Minimum matrix size for Cholesky decomposition with DLAF", &
851 globenv%dlaf_cholesky_n_min
854#if defined(__CHECK_DIAG)
856 IF (globenv%eps_check_diag < 0.0_dp)
THEN
857 WRITE (unit=output_unit, fmt=
"(T2,A,T71,ES10.3)") &
858 start_section_label//
"| Orthonormality check for eigenvectors enabled", &
861 WRITE (unit=output_unit, fmt=
"(T2,A,T71,ES10.3)") &
862 start_section_label//
"| Orthonormality check for eigenvectors enabled", &
863 globenv%eps_check_diag
866 IF (globenv%eps_check_diag < 0.0_dp)
THEN
867 WRITE (unit=output_unit, fmt=
"(T2,A,T73,A)") &
868 start_section_label//
"| Orthonormality check for eigenvectors", &
871 WRITE (unit=output_unit, fmt=
"(T2,A,T71,ES10.3)") &
872 start_section_label//
"| Orthonormality check for eigenvectors enabled", &
873 globenv%eps_check_diag
880 WRITE (unit=output_unit, fmt=
"(T2,A,T72,A)") &
881 start_section_label//
"| Matrix multiplication library",
"ScaLAPACK"
883 WRITE (unit=output_unit, fmt=
"(T2,A,T76,A)") &
884 start_section_label//
"| Matrix multiplication library",
"COSMA"
888 WRITE (unit=output_unit, fmt=
"(T2,A,T80,L1)") &
889 start_section_label//
"| All-to-all communication in single precision", ata
891 WRITE (unit=output_unit, fmt=
"(T2,A,T80,L1)") &
892 start_section_label//
"| FFTs using library dependent lengths", efl
894 SELECT CASE (print_level)
896 print_level_string =
"SILENT"
898 print_level_string =
" LOW"
900 print_level_string =
"MEDIUM"
902 print_level_string =
" HIGH"
904 print_level_string =
" DEBUG"
906 cpabort(
"Unknown print_level")
910 SELECT CASE (i_grid_backend)
912 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
913 start_section_label//
"| Grid backend",
"AUTO"
915 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
916 start_section_label//
"| Grid backend",
"CPU"
918 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
919 start_section_label//
"| Grid backend",
"DGEMM"
921 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
922 start_section_label//
"| Grid backend",
"GPU"
924 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
925 start_section_label//
"| Grid backend",
"HIP"
927 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
928 start_section_label//
"| Grid backend",
"REF"
931 WRITE (unit=output_unit, fmt=
"(T2,A,T75,A6)") &
932 start_section_label//
"| Global print level", print_level_string
933 WRITE (unit=output_unit, fmt=
"(T2,A,T75,L6)") &
934 start_section_label//
"| MPI I/O enabled", flag
935 WRITE (unit=output_unit, fmt=
"(T2,A,T75,I6)") &
936 start_section_label//
"| Total number of message passing processes", &
938 start_section_label//
"| Number of distributed systems (nodes)", &
940 start_section_label//
"| Number of threads for this process", &
942 start_section_label//
"| This output is from process", para_env%mepos
945 WRITE (unit=output_unit, fmt=
"(T2,A,T68,A13)") &
946 start_section_label//
"| OpenMP stack size per thread (OMP_STACKSIZE)", &
947 adjustr(omp_stacksize)
950 WRITE (unit=output_unit, fmt=
"(T2,A,T68,A13)") &
951 start_section_label//
"| OpenMP issue trace (CP2K_OMP_TRACE)", &
956 WRITE (unit=output_unit, fmt=
"(T2,A,T30,A51)") &
957 start_section_label//
"| CPU model name", adjustr(trim(model_name))
962 IF ((cpuid > 0) .OR. (cpuid_static > 0))
THEN
963 WRITE (unit=output_unit, fmt=
"(T2,A,T75,I6)") &
964 start_section_label//
"| CPUID", cpuid
965 IF (cpuid /= cpuid_static)
THEN
966 WRITE (unit=output_unit, fmt=
"(T2,A,T75,I6)") &
967 start_section_label//
"| Compiled for CPUID", cpuid_static
974 CALL cp_hint(__location__,
"The compiler target flags ("// &
975 trim(
m_cpuid_name(cpuid_static))//
") used to build this binary cannot exploit "// &
976 "all extensions of this CPU model ("//trim(
m_cpuid_name(cpuid))//
"). "// &
977 "Consider compiler target flags as part of FCFLAGS and CFLAGS (ARCH file).")
980 WRITE (unit=output_unit, fmt=
"()")
981 WRITE (unit=output_unit, fmt=
"(T2,A)")
"MEMORY| system memory details [Kb]"
982 WRITE (unit=output_unit, fmt=
"(T2,A23,4A14)")
"MEMORY| ",
"rank 0",
"min",
"max",
"average"
983 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)")
"MEMORY| MemTotal ", memtotal, memtotal_min, memtotal_max, memtotal_avr
984 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)")
"MEMORY| MemFree ", memfree, memfree_min, memfree_max, memfree_avr
985 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)")
"MEMORY| Buffers ", buffers, buffers_min, buffers_max, buffers_avr
986 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)")
"MEMORY| Cached ", cached, cached_min, cached_max, cached_avr
987 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)")
"MEMORY| Slab ", slab, slab_min, slab_max, slab_avr
988 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)") &
989 "MEMORY| SReclaimable ", sreclaimable, sreclaimable_min, sreclaimable_max, &
991 WRITE (unit=output_unit, fmt=
"(T2,A23,4I14)") &
992 "MEMORY| MemLikelyFree ", memlikelyfree, memlikelyfree_min, memlikelyfree_max, &
994 WRITE (unit=output_unit, fmt=
'()')
1001 END SUBROUTINE read_global_section
1012 SUBROUTINE read_cp2k_section(root_section, para_env, globenv)
1018 INTEGER :: output_unit
1023 CALL read_global_section(root_section, para_env, globenv)
1028 CALL fft_setup_library(globenv, global_section)
1029 CALL diag_setup_library(globenv)
1034 END SUBROUTINE read_cp2k_section
1045 SUBROUTINE fft_setup_library(globenv, global_section)
1050 CHARACTER(LEN=3*default_string_length) :: message
1051 COMPLEX(KIND=dp),
DIMENSION(4, 4, 4) :: zz
1053 INTEGER,
DIMENSION(3) :: n
1057 zz(:, :, :) = 0.0_dp
1064 IF (globenv%default_fft_library ==
"FFTW3")
THEN
1071 CALL init_fft(fftlib=trim(globenv%default_fft_library), &
1073 fftsg_sizes=.NOT.
section_get_lval(global_section,
"EXTENDED_FFT_LENGTHS"), &
1074 pool_limit=globenv%fft_pool_scratch_limit, &
1075 wisdom_file=globenv%fftw_wisdom_file_name, &
1076 plan_style=globenv%fftw_plan_type)
1082 message =
"FFT library "//trim(globenv%default_fft_library)// &
1083 " is not available. Trying FFT library FFTW3."
1084 cpwarn(trim(message))
1085 globenv%default_fft_library =
"FFTW3"
1086 CALL init_fft(fftlib=trim(globenv%default_fft_library), &
1088 fftsg_sizes=.NOT.
section_get_lval(global_section,
"EXTENDED_FFT_LENGTHS"), &
1089 pool_limit=globenv%fft_pool_scratch_limit, &
1090 wisdom_file=globenv%fftw_wisdom_file_name, &
1091 plan_style=globenv%fftw_plan_type)
1096 message =
"FFT library "//trim(globenv%default_fft_library)// &
1097 " is not available. Trying FFT library FFTSG."
1098 cpwarn(trim(message))
1099 globenv%default_fft_library =
"FFTSG"
1100 CALL init_fft(fftlib=trim(globenv%default_fft_library), &
1102 fftsg_sizes=.NOT.
section_get_lval(global_section,
"EXTENDED_FFT_LENGTHS"), &
1103 pool_limit=globenv%fft_pool_scratch_limit, &
1104 wisdom_file=globenv%fftw_wisdom_file_name, &
1105 plan_style=globenv%fftw_plan_type)
1109 cpabort(
"FFT library FFTSG does not work. No FFT library available.")
1114 END SUBROUTINE fft_setup_library
1122 SUBROUTINE diag_setup_library(globenv)
1125 CHARACTER(LEN=3*default_string_length) :: message
1126 LOGICAL :: fallback_applied
1128 CALL diag_init(diag_lib=trim(globenv%diag_library), &
1129 fallback_applied=fallback_applied, &
1130 elpa_kernel=globenv%k_elpa, &
1131 elpa_neigvec_min_input=globenv%elpa_neigvec_min, &
1132 elpa_qr=globenv%elpa_qr, &
1133 elpa_print=globenv%elpa_print, &
1134 elpa_one_stage=globenv%elpa_one_stage, &
1135 dlaf_neigvec_min_input=globenv%dlaf_neigvec_min, &
1136 eps_check_diag_input=globenv%eps_check_diag, &
1137 direct_generalized_diagonalization_input= &
1138 globenv%direct_generalized_diagonalization)
1140 IF (fallback_applied)
THEN
1141 message =
"Diagonalization library "//trim(globenv%diag_library)// &
1142 " is not available. The ScaLAPACK library is used as fallback."
1143 cpwarn(trim(message))
1146 END SUBROUTINE diag_setup_library
1152 SUBROUTINE fm_setup(glob_section)
1155 INTEGER :: mm_type, ncb, nrb
1169 END SUBROUTINE fm_setup
1175 SUBROUTINE dgemm_setup(glob_section)
1178 INTEGER :: dgemm_type
1184 END SUBROUTINE dgemm_setup
1192 SUBROUTINE fm_diag_rules_setup(glob_section)
1196 LOGICAL :: elpa_force_redistribute, should_print
1208 END SUBROUTINE fm_diag_rules_setup
1220 CHARACTER(LEN=*),
INTENT(in) :: keyword_name
1221 REAL(kind=
dp),
INTENT(out) :: walltime
1223 CHARACTER(LEN=1) :: c1, c2
1224 CHARACTER(LEN=100) :: txt
1225 INTEGER :: hours, ierr, minutes, n,
seconds
1232 ELSE IF (index(txt,
":") == 0)
THEN
1233 READ (txt(1:n), fmt=*, iostat=ierr) walltime
1234 IF (ierr /= 0) cpabort(
'Could not parse WALLTIME: "'//txt(1:n)//
'"')
1236 READ (txt(1:n), fmt=
"(I2,A1,I2,A1,I2)", iostat=ierr) hours, c1, minutes, c2,
seconds
1237 IF (n /= 8 .OR. ierr /= 0 .OR. c1 /=
":" .OR. c2 /=
":") &
1238 cpabort(
'Could not parse WALLTIME: "'//txt(1:n)//
'"')
1239 walltime = 3600.0_dp*real(hours,
dp) + 60.0_dp*real(minutes,
dp) + real(
seconds,
dp)
1265 CHARACTER(LEN=*),
OPTIONAL :: wdir
1266 LOGICAL,
INTENT(IN),
OPTIONAL :: q_finalize
1268 CHARACTER(LEN=default_path_length) :: cg_filename
1269 INTEGER :: cg_mode, iw, unit_exit
1270 LOGICAL :: delete_it, do_finalize, report_maxloc, &
1272 REAL(kind=
dp) :: r_timings
1279 do_finalize = .true.
1280 IF (
PRESENT(q_finalize)) do_finalize = q_finalize
1284 IF (do_finalize)
THEN
1290 CALL finalize_fft(para_env, globenv%fftw_wisdom_file_name)
1300 "GLOBAL%PROGRAM_RUN_INFO")
1306 WRITE (unit=iw, fmt=
"(/,T2,A)") repeat(
"-", 79)
1307 WRITE (unit=iw, fmt=
"(T2,A,T80,A)")
"-",
"-"
1308 WRITE (unit=iw, fmt=
"(T2,A,T30,A,T80,A)")
"-",
"R E F E R E N C E S",
"-"
1309 WRITE (unit=iw, fmt=
"(T2,A,T80,A)")
"-",
"-"
1310 WRITE (unit=iw, fmt=
"(T2,A)") repeat(
"-", 79)
1311 WRITE (unit=iw, fmt=
"(T2,A)")
""
1312 WRITE (unit=iw, fmt=
"(T2,A)") trim(
cp2k_version)//
", the CP2K developers group ("//trim(
cp2k_year)//
")."
1313 WRITE (unit=iw, fmt=
"(T2,A)")
"CP2K is freely available from "//trim(
cp2k_home)//
" ."
1314 WRITE (unit=iw, fmt=
"(T2,A)")
""
1318 "GLOBAL%REFERENCES")
1320 CALL timestop(globenv%handle)
1325 sort_by_self_time =
section_get_lval(root_section,
"GLOBAL%TIMINGS%SORT_BY_SELF_TIME")
1326 report_maxloc =
section_get_lval(root_section,
"GLOBAL%TIMINGS%REPORT_MAXLOC")
1336 IF (len_trim(cg_filename) == 0) cg_filename = trim(logger%iter_info%project_name)
1338 cg_filename = trim(cg_filename)//
"_"//trim(adjustl(
cp_to_string(para_env%mepos)))
1340 WRITE (unit=iw, fmt=
"(T2,3X,A)")
"Writing callgraph to: "//trim(cg_filename)//
".callgraph"
1341 WRITE (unit=iw, fmt=
"()")
1342 WRITE (unit=iw, fmt=
"(T2,A)")
"-------------------------------------------------------------------------------"
1354 IF (para_env%is_source())
THEN
1360 INQUIRE (file=
"EXIT", exist=delete_it)
1362 CALL open_file(file_name=
"EXIT", unit_number=unit_exit)
1363 CALL close_file(unit_number=unit_exit, file_status=
"DELETE")
1367 INQUIRE (file=trim(logger%iter_info%project_name)//
".EXIT", exist=delete_it)
1369 CALL open_file(file_name=trim(logger%iter_info%project_name)//
".EXIT", unit_number=unit_exit)
1370 CALL close_file(unit_number=unit_exit, file_status=
"DELETE")
1376 WRITE (iw,
"(T2,A,I0)")
"The number of traced issues for OpenMP : ",
m_omp_trace_issues()
1378 WRITE (iw,
"(T2,A,I0)")
"The number of warnings for this run is : ",
warning_counter
1380 WRITE (unit=iw, fmt=
"(T2,A)") repeat(
"-", 79)
1388 IF (iw > 0)
FLUSH (iw)
1391 "GLOBAL%PROGRAM_RUN_INFO")
const char * get_data_dir()
Returns path of data directory if set, otherwise an empty string.
Target architecture or instruction set extension according to compiler target flags.
Trace OpenMP constructs if ennvironment variable CP2K_OMP_TRACE=1.
collects all references to literature in CP2K as new algorithms / method are included from literature...
integer, save, public marek2014
integer, save, public solca2024
integer, save, public frigo2005
some minimal info about CP2K, including its version and license
character(len=default_string_length), public r_host_name
character(len= *), parameter, public cp2k_home
character(len= *), parameter, public compile_host
character(len= *), parameter, public compile_arch
character(len= *), parameter, public compile_revision
character(len= *), parameter, public compile_date
character(len= *), parameter, public cp2k_year
character(len=10 *default_string_length) function, public cp2k_flags()
list all compile time options that influence the capabilities of cp2k. All new flags should be added ...
character(len= *), parameter, public cp2k_version
subroutine, public get_runtime_info()
...
character(len=default_string_length), public r_user_name
Module that contains the routines for error handling.
integer, save, public warning_counter
Utility routines to open and close files. Tracking of preconnections.
subroutine, public open_file(file_name, file_status, file_form, file_action, file_position, file_pad, unit_number, debug, skip_get_unit_number, file_access)
Opens the requested file using a free unit number.
subroutine, public close_file(unit_number, file_status, keep_preconnection)
Close an open file given by its logical unit number. Optionally, keep the file and unit preconnected.
various cholesky decomposition related routines
integer, parameter, public fm_cholesky_type_dlaf
integer, parameter, public fm_cholesky_type_scalapack
integer, save, public dlaf_cholesky_n_min
integer, save, public cholesky_type
Auxiliary tools to redistribute cp_fm_type matrices before and after diagonalization....
subroutine, public cp_fm_redistribute_init(a, x, should_print, elpa_force_redistribute)
Initializes the parameters that determine how to calculate the optimal number of CPUs for diagonalizi...
used for collecting some of the diagonalization schemes available for cp_fm_type. cp_fm_power also mo...
real(kind=dp), parameter, public eps_check_diag_default
integer, parameter, public fm_diag_type_cusolver
integer, parameter, public fm_diag_type_dlaf
integer, parameter, public fm_diag_type_scalapack
subroutine, public diag_finalize()
Finalize the diagonalization library.
integer, parameter, public fm_diag_type_elpa
integer, parameter, public cusolver_n_min
subroutine, public diag_init(diag_lib, fallback_applied, elpa_kernel, elpa_neigvec_min_input, elpa_qr, elpa_print, elpa_one_stage, dlaf_neigvec_min_input, eps_check_diag_input, direct_generalized_diagonalization_input)
Setup the diagonalization library to be used.
represent the structure of a full matrix
subroutine, public cp_fm_struct_config(nrow_block, ncol_block, force_block)
allows to modify the default settings for matrix creation
represent a full matrix distributed on many processors
integer function, public cp_fm_get_mm_type()
...
subroutine, public cp_fm_setup(mm_type)
...
various routines to log and control the output. The idea is that decisions about where to log should ...
recursive integer function, public cp_logger_get_default_unit_nr(logger, local, skip_not_ionode)
asks the default unit number of the given logger. try to use cp_logger_get_unit_nr
subroutine, public cp_logger_set(logger, local_filename, global_filename)
sets various attributes of the given logger
subroutine, public cp_rm_default_logger()
the cousin of cp_add_default_logger, decrements the stack, so that the default logger is what it has ...
subroutine, public cp_logger_release(logger)
releases this logger
subroutine, public cp_logger_create(logger, para_env, print_level, default_global_unit_nr, default_local_unit_nr, global_filename, local_filename, close_global_unit_on_dealloc, iter_info, close_local_unit_on_dealloc, suffix, template_logger)
initializes a logger
subroutine, public cp_add_default_logger(logger)
adds a default logger. MUST be called before logging occours
type(cp_logger_type) function, pointer, public cp_get_default_logger()
returns the default logger
routines to handle the output, The idea is to remove the decision of wheter to output and what to out...
subroutine, public cp_mpi_io_set(flag)
Sets flag which determines whether or not to use MPI I/O for I/O routines that have been parallized w...
integer, parameter, public debug_print_level
integer function, public cp_print_key_unit_nr(logger, basis_section, print_key_path, extension, middle_name, local, log_filename, ignore_should_output, file_form, file_position, file_action, file_status, do_backup, on_file, is_new_file, mpi_io, fout)
...
integer, parameter, public low_print_level
integer, parameter, public medium_print_level
subroutine, public cp_print_key_finished_output(unit_nr, logger, basis_section, print_key_path, local, ignore_should_output, on_file, mpi_io)
should be called after you finish working with a unit obtained with cp_print_key_unit_nr,...
integer, parameter, public high_print_level
integer, parameter, public silent_print_level
Sets up and terminates the global environment variables.
subroutine, public cp2k_finalize(root_section, para_env, globenv, wdir, q_finalize)
Writes final timings and banner for CP2K.
subroutine, public cp2k_read(root_section, para_env, globenv)
read part of cp2k_init
subroutine, public cp2k_get_walltime(section, keyword_name, walltime)
reads the Walltime also in format HH:MM:SS
subroutine, public cp2k_init(para_env, output_unit, globenv, input_file_name, wdir)
Initializes a CP2K run (setting of the global environment variables)
subroutine, public cp2k_setup(root_section, para_env, globenv)
globenv initializations that need the input and error
Interface for the force calculations.
subroutine, public multiple_fe_list(force_env_sections, root_section, i_force_eval, nforce_eval)
returns the order of the multiple force_env
Calculation of the incomplete Gamma function F_n(t) for multi-center integrals over Cartesian Gaussia...
subroutine, public deallocate_md_ftable()
Deallocate the table of F_n(t) values.
Define type storing the global information of a run. Keep the amount of stored data small....
Fortran API for the grid package, which is written in C.
integer, parameter, public grid_backend_auto
integer, parameter, public grid_backend_gpu
integer, parameter, public grid_backend_hip
integer, parameter, public grid_backend_dgemm
integer, parameter, public grid_backend_cpu
integer, parameter, public grid_backend_ref
Defines the basic variable types.
integer, parameter, public int_8
integer, parameter, public dp
integer, parameter, public default_string_length
integer, parameter, public default_path_length
subroutine, public print_kind_info(iw)
Print informations about the used data types.
subroutine, public local_gemm_set_library(dgemm_library)
...
Machine interface based on Fortran 2003 and POSIX.
logical, save, public flush_should_flush
integer function, public m_procrun(pid)
Returns if a process is running on the local machine 1 if yes and 0 if not.
subroutine, public m_memory_details(memtotal, memfree, buffers, cached, slab, sreclaimable, memlikelyfree)
get more detailed memory info, all units are bytes. the only 'useful' option is MemLikelyFree which i...
pure integer function, public m_cpuid()
Target architecture or instruction set extension according to CPU-check at runtime.
pure integer function, public m_cpuid_vlen(cpuid, typesize)
Determine vector-length for a given CPUID.
real(kind=dp) function, public m_energy()
returns the energy used since some time in the past. The precise meaning depends on the infrastructur...
subroutine, public m_cpuinfo(model_name)
reads /proc/cpuinfo if it exists (i.e. Linux) to return relevant info
pure character(len=default_string_length) function, public m_cpuid_name(cpuid)
Determine name of target architecture for a given CPUID.
subroutine, public m_omp_get_stacksize(omp_stacksize)
Retrieve environment variable OMP_STACKSIZE.
Interface to the message passing library MPI.
logical, save, public mp_collect_timings
Defines all routines to deal with the performance of MPI routines.
subroutine, public rm_mp_perf_env()
...
subroutine, public describe_mp_perf_env(scr)
...
subroutine, public add_mp_perf_env(perf_env)
start and stop the performance indicators for every call to start there has to be (exactly) one call ...
Provides Cartesian and spherical orbital pointers and indices.
subroutine, public init_orbital_pointers(maxl)
Initialize or update the orbital pointers.
subroutine, public deallocate_orbital_pointers()
Deallocate the orbital pointers.
Parallel (pseudo)random number generator (RNG) for multiple streams and substreams of random numbers.
subroutine, public check_rng(output_unit, ionode)
...
subroutine, public write_rng_matrices(output_unit)
Write the transformation matrices of the two MRG components (raised to the specified output)
integer, parameter, public gaussian
Definition of physical constants:
real(kind=dp), parameter, public seconds
subroutine, public write_physcon(output_unit)
Write all basic physical constants used by CP2K to a logical output unit.
provides a uniform framework to add references to CP2K cite and output these
subroutine, public collect_citations_from_ranks(para_env)
Checks for each reference if any mpi-rank has marked it for citation.
subroutine, public cite_reference(key)
marks a given reference as cited.
subroutine, public print_cited_references(unit)
printout of all cited references in the journal format sorted by publication year
Utilities for string manipulations.
subroutine, public integer_to_string(inumber, string)
Converts an integer number to a string. The WRITE statement will return an error message,...
subroutine, public string_to_ascii(string, nascii)
Convert a string to sequence of integer numbers.
subroutine, public ascii_to_string(nascii, string)
Convert a sequence of integer numbers (ASCII code) to a string. Blanks are inserted for invalid ASCII...
Timing routines for accounting.
integer, parameter, public cost_type_energy
subroutine, public timings_report_callgraph(filename)
Write accumulated callgraph information as cachegrind-file. http://kcachegrind.sourceforge....
integer, parameter, public cost_type_time
subroutine, public timings_report_print(iw, r_timings, sort_by_self_time, cost_type, report_maxloc, para_env)
Print accumulated information on timers.
Timing routines for accounting.
integer, save, public global_timings_level
subroutine, public timings_setup_tracing(trace_max, unit_nr, trace_str, routine_names)
Set routine tracer.
subroutine, public add_timer_env(timer_env)
adds the given timer_env to the top of the stack
subroutine, public rm_timer_env()
removes the current timer env from the stack
character(len=default_string_length), parameter, public root_cp2k_name
Interface for Voronoi Integration and output of BQB files.
subroutine, public finalize_libvori()
Call libvori's finalize if support is compiled in.
type of a logger, at the moment it contains just a print level starting at which level it should be l...
contains the initially parsed file and the initial parallel environment
stores all the informations relevant to an mpi environment