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

Reenable CUDA stdexec CI configuration #1279

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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
38 changes: 19 additions & 19 deletions ci/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
include:
- local: 'ci/cpu/asan_ubsan_lsan.yml'
- local: 'ci/cpu/clang15_release_cxx20.yml'
- local: 'ci/cpu/clang15_release_stdexec.yml'
- local: 'ci/cpu/clang15_release.yml'
- local: 'ci/cpu/clang16_release.yml'
- local: 'ci/cpu/clang18_release.yml'
- local: 'ci/cpu/gcc11_release_stdexec.yml'
- local: 'ci/cpu/gcc11_debug_stdexec.yml'
- local: 'ci/cpu/gcc12_release_cxx20.yml'
- local: 'ci/cpu/gcc13_codecov.yml'
- local: 'ci/cpu/gcc13_release.yml'
- local: 'ci/cuda/gcc13_release.yml'
- local: 'ci/cuda/gcc13_release_scalapack.yml'
- local: 'ci/cuda/gcc13_debug.yml'
- local: 'ci/cuda/gcc13_debug_scalapack.yml'
# - local: 'ci/cuda/gcc13_release_stdexec.yml'
- local: 'ci/rocm/clang14_release.yml'
- local: 'ci/rocm/clang14_release_stdexec.yml'
- local: 'ci/rocm/clang15_release_stdexec.yml'
# - local: 'ci/cpu/asan_ubsan_lsan.yml'
# - local: 'ci/cpu/clang15_release_cxx20.yml'
# - local: 'ci/cpu/clang15_release_stdexec.yml'
# - local: 'ci/cpu/clang15_release.yml'
# - local: 'ci/cpu/clang16_release.yml'
# - local: 'ci/cpu/clang18_release.yml'
# - local: 'ci/cpu/gcc11_release_stdexec.yml'
# - local: 'ci/cpu/gcc11_debug_stdexec.yml'
# - local: 'ci/cpu/gcc12_release_cxx20.yml'
# - local: 'ci/cpu/gcc13_codecov.yml'
# - local: 'ci/cpu/gcc13_release.yml'
# - local: 'ci/cuda/gcc13_release.yml'
# - local: 'ci/cuda/gcc13_release_scalapack.yml'
# - local: 'ci/cuda/gcc13_debug.yml'
# - local: 'ci/cuda/gcc13_debug_scalapack.yml'
- local: 'ci/cuda/gcc13_release_stdexec.yml'
# - local: 'ci/rocm/clang14_release.yml'
# - local: 'ci/rocm/clang14_release_stdexec.yml'
# - local: 'ci/rocm/clang15_release_stdexec.yml'
4 changes: 2 additions & 2 deletions ci/ctest_to_gitlab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ upload_reports:
DISABLE_AFTER_SCRIPT: 'YES'
script: upload_codecov
"
TIMELIMIT="60:00"
TIMELIMIT="2:00:00"
ARTIFACTS="
artifacts:
when: always
Expand All @@ -46,7 +46,7 @@ STAGES="
- test
"
EXTRA_JOBS=""
TIMELIMIT="45:00"
TIMELIMIT="2:00:00"
ARTIFACTS="
artifacts:
when: always
Expand Down
3 changes: 3 additions & 0 deletions ci/docker/common-gh200.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,6 @@ packages:
# Force git as non-buildable to allow deprecated versions in environments
# https://github.com/spack/spack/pull/30040
buildable: false
stdexec:
require:
- '@git.nvhpc-25.03.rc1=25.03'
3 changes: 3 additions & 0 deletions ci/docker/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ packages:
# Force git as non-buildable to allow deprecated versions in environments
# https://github.com/spack/spack/pull/30040
buildable: false
stdexec:
require:
- '@git.nvhpc-25.03.rc1=25.03'
4 changes: 2 additions & 2 deletions ci/mpi-ctest
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ fi
# Run the tests, only output on the first rank
if [[ $SLURM_PROCID == "0" ]]; then
TZ=CET date +"Run started at: %H:%M:%S %z"
ctest --output-log "$CTEST_OUTPUT" -V $@ | grep -v "PU.*Core.*Socket.*pool" | grep -v "MPI rank: 0" | grep -E -v "\*{70}"
ctest --repeat-until-fail 10 --output-log "$CTEST_OUTPUT" -V $@ | grep -v "PU.*Core.*Socket.*pool" | grep -v "MPI rank: 0" | grep -E -v "\*{70}"
TZ=CET date +"Run finished at: %H:%M:%S %z"
else
ctest --output-log "$CTEST_OUTPUT" -V -Q $@
ctest --repeat-until-fail 10 --output-log "$CTEST_OUTPUT" -V -Q $@
fi

# Create coverage reports for code run
Expand Down
Loading