Skip to content

Commit d4818ae

Browse files
authored
Merge branch 'bartgol/eamxx/ghci-snl-oneapi-fix' (PR #8468)
Fixes an issue causing VERY SLOW reads on this machine. [BFB]
2 parents 7650583 + fbba086 commit d4818ae

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

components/eamxx/cmake/ctest_script.cmake

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,9 @@ ctest_start(${dashboard_model} TRACK ${dashboard_track})
2020
# Add some exception rules for ctest automatic error detection
2121
# These are strings in the build output that ctest mistakenly
2222
# interprets as errors
23-
string(CONCAT FILE_CONTENT
24-
"list(APPEND CTEST_CUSTOM_ERROR_EXCEPTION\n"
25-
" error_handler\n"
26-
")"
27-
)
28-
29-
file(WRITE ${CTEST_BINARY_DIRECTORY}/CTestCustom.cmake
30-
"${FILE_CONTENT}"
23+
list(APPEND CTEST_CUSTOM_ERROR_EXCEPTION
24+
".*error_handler.*"
25+
".*spdlog/fmt/bundled/format.h.*"
3126
)
3227

3328
if (USE_NINJA)

components/eamxx/scripts/machines_specs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,8 @@ class GHCISNLOneAPI(Machine):
291291
def setup(cls):
292292
super().setup_base("ghci-snl-oneapi")
293293
cls.baselines_dir = "/projects/e3sm/baselines/scream/ghci-snl-oneapi"
294-
cls.env_setup = ["export GATOR_INITIAL_MB=4000MB"]
294+
cls.env_setup = ["export GATOR_INITIAL_MB=4000MB",
295+
"export OMPI_MCA_io=romio321"]
295296

296297
###############################################################################
297298
class GHCISNLCuda(Machine):

0 commit comments

Comments
 (0)