Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed May 29, 2021
1 parent 863dc8c commit b0ba9b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/environment.F
Original file line number Diff line number Diff line change
Expand Up @@ -792,13 +792,13 @@ SUBROUTINE read_global_section(root_section, para_env, globenv)

SELECT CASE (cp_fm_get_mm_type())
CASE (do_scalapack)
WRITE (UNIT=output_unit, FMT="(T2,A,T75,A6)") &
start_section_label//"| Matrix multiplication library", "SCALAPACK"
WRITE (UNIT=output_unit, FMT="(T2,A,T72,A)") &
start_section_label//"| Matrix multiplication library", "ScaLAPACK"
CASE (do_dbcsr)
WRITE (UNIT=output_unit, FMT="(T2,A,T75,A6)") &
WRITE (UNIT=output_unit, FMT="(T2,A,T76,A)") &
start_section_label//"| Matrix multiplication library", "DBCSR"
CASE (do_cosma)
WRITE (UNIT=output_unit, FMT="(T2,A,T75,A6)") &
WRITE (UNIT=output_unit, FMT="(T2,A,T76,A)") &
start_section_label//"| Matrix multiplication library", "COSMA"
END SELECT

Expand Down
2 changes: 1 addition & 1 deletion src/input_cp2k_global.F
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ SUBROUTINE create_fm_section(section)
enum_i_vals=(/do_scalapack, do_scalapack, do_dbcsr, do_cosma/), &
enum_c_vals=s2a("SCALAPACK", "PDGEMM", "DBCSR_MM", "COSMA"), &
enum_desc=s2a("Standard ScaLAPACK pdgemm", &
"Alias for SCALAPACK", &
"Alias for ScaLAPACK", &
"DBCSR_MM is employed. This needs local transformation of the matrices", &
"COSMA is employed. See https://github.com/eth-cscs/COSMA."))
CALL section_add_keyword(section, keyword)
Expand Down

0 comments on commit b0ba9b4

Please sign in to comment.