Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Building at UGent: Zen3/A100 #842

Open
wants to merge 8 commits into
base: 2023.06-software.eessi.io
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bot/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ mkdir -p ${STORAGE}
JOB_STORAGE=$(mktemp --directory --tmpdir=${STORAGE} bot_job_tmp_XXX)
echo "bot/build.sh: created unique base tmp storage directory at ${JOB_STORAGE}"

echo "bot/build.sh: MODULEPATH='${MODULEPATH}'"
# obtain list of modules to be loaded
LOAD_MODULES=$(cfg_get_value "site_config" "load_modules")
echo "bot/build.sh: LOAD_MODULES='${LOAD_MODULES}'"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
easyconfigs:
- pmt-1.2.0-GCCcore-12.3.0-CUDA-12.1.1.eb
13 changes: 12 additions & 1 deletion reframe_config_bot.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ site_configuration = {
'launcher': 'mpirun',
'environs': ['default'],
'features': [
FEATURES[CPU]
FEATURES[GPU]
] + list(SCALES.keys()),
'resources': [
{
'name': '_rfm_gpu',
'options': ['--gpus-per-node={num_gpus_per_node}'],
},
{
'name': 'memory',
'options': ['--mem={size}'],
Expand All @@ -32,7 +36,14 @@ site_configuration = {
# Make sure to round down, otherwise a job might ask for more mem than is available
# per node
'mem_per_node': __MEM_PER_NODE__,
GPU_VENDOR: GPU_VENDORS[NVIDIA],
},
'devices': [
{
'type': DEVICE_TYPES[GPU],
'num_devices': 4,
}
],
'max_jobs': 1
}
]
Expand Down
2 changes: 1 addition & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ else
fatal_error "Failed to extract names of tests to run: ${REFRAME_NAME_ARGS}"
exit ${test_selection_exit_code}
fi
export REFRAME_ARGS="--tag CI --tag 1_node --nocolor ${REFRAME_NAME_ARGS}"
export REFRAME_ARGS="--tag CI --tag 1_4_node --nocolor ${REFRAME_NAME_ARGS}"

# List the tests we want to run
echo "Listing tests: reframe ${REFRAME_ARGS} --list"
Expand Down
Loading