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

Merged
merged 23 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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
4 changes: 1 addition & 3 deletions ci/cscs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,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 @@ -133,7 +131,7 @@ build_py310_image_aarch64:
VARIANT: [-nomesh, -atlas]
SUBVARIANT: [-cuda11x, -cpu]
.test_helper_aarch64:
extends: [.container-runner-todi-gh200, .test_helper]
extends: [.container-runner-daint-gh200, .test_helper]
parallel:
matrix:
- SUBPACKAGE: [cartesian, storage]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,11 @@ def test_K_offset_write(backend):
if backend == "cuda":
pytest.skip("cuda K-offset write generates bad code")

if backend == "dace:gpu":
pytest.skip(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@FlorianDeconinck I have deactivated the test case this way. I was not sure whether to refer to issue #1684 or #1754.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, January has been idiotically overbooked and I keep falling off. I'll take it from there, sorry for the delay again

f"{backend} backend is not capable of K offset write, bug remains unsolved: https://github.com/GridTools/gt4py/issues/1684"
)

arraylib = get_array_library(backend)
array_shape = (1, 1, 4)
K_values = arraylib.arange(start=40, stop=44)
Expand Down
Loading