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

ci: Re-enable CI on GH200 #1653

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
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
19 changes: 16 additions & 3 deletions ci/cscs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ stages:
CUPY_PACKAGE: cupy-cuda12x
CUPY_VERSION: 13.3.0
UBUNTU_VERSION: 22.04
# TODO: enable CI job when Todi is back in operational state
when: manual

build_py311_baseimage_x86_64:
extends: .build_baseimage_x86_64
Expand Down Expand Up @@ -146,6 +144,21 @@ build_py38_image_x86_64:
<<: *py38



# TODO(edopao): remove santis config once available in remote CSCS GitLab config
.container-runner-santis-alps:
extends: .f7t-container-runner
variables:
FIRECREST_SYSTEM: 'santis'
.container-runner-santis-gh200:
extends: .container-runner-santis-alps
variables:
ARCH: 'aarch64'
USE_CE: 'YES'
SLURM_MPI_TYPE: pmi2
NVIDIA_VISIBLE_DEVICES: 'all'
NVIDIA_DRIVER_CAPABILITIES: 'compute,utility'

.test_helper:
stage: test
image: $CSCS_REGISTRY_PATH/public/$ARCH/gt4py/gt4py-ci:$CI_COMMIT_SHA-$PYVERSION
Expand All @@ -171,7 +184,7 @@ build_py38_image_x86_64:
VARIANT: [-nomesh, -atlas]
SUBVARIANT: [-cuda11x, -cpu]
.test_helper_aarch64:
extends: [.container-runner-todi-gh200, .test_helper]
extends: [.container-runner-santis-gh200, .test_helper]
parallel:
matrix:
- SUBPACKAGE: [cartesian, storage]
Expand Down
Loading