Skip to content

Commit 3b935e4

Browse files
committed
EAMxx: fix ekat config print
1 parent 6c32ad5 commit 3b935e4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

components/eamxx/src/share/eamxx_config.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ namespace scream {
1111

1212
std::string eamxx_config_string() {
1313
std::string config = "\n-------- EKAT CONFIGS --------\n\n";
14-
config += ekat::active_avx_string ();
15-
config += ekat::compiler_id_string ();
16-
config += ekat::fpe_config_string ();
14+
config += "Active AVX settings: " + ekat::active_avx_string () + "\n";
15+
config += "Compiler Id: " + ekat::compiler_id_string () + "\n";
1716
config += ekat::kokkos_config_string();
1817
config += "\n-------- SCREAM CONFIGS --------\n\n";
1918
config += " sizeof(Real) = " + std::to_string(sizeof(Real)) + "\n";

0 commit comments

Comments
 (0)