We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c32ad5 commit 3b935e4Copy full SHA for 3b935e4
components/eamxx/src/share/eamxx_config.cpp
@@ -11,9 +11,8 @@ namespace scream {
11
12
std::string eamxx_config_string() {
13
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 ();
+ config += "Active AVX settings: " + ekat::active_avx_string () + "\n";
+ config += "Compiler Id: " + ekat::compiler_id_string () + "\n";
17
config += ekat::kokkos_config_string();
18
config += "\n-------- SCREAM CONFIGS --------\n\n";
19
config += " sizeof(Real) = " + std::to_string(sizeof(Real)) + "\n";
0 commit comments