From 9161b2b57b49649f9250e8fd2457f7ade6d4f574 Mon Sep 17 00:00:00 2001 From: "Adrien M. BERNEDE" <51493078+adrienbernede@users.noreply.github.com> Date: Mon, 2 Sep 2024 16:40:29 +0200 Subject: [PATCH] Allow failure for intel jobs on ruby and poodle and cce 18 jobs on tioga, add cce 17 job on tioga --- .gitlab/jobs/poodle.yml | 8 ++++++++ .gitlab/jobs/ruby.yml | 8 ++++++++ .gitlab/jobs/tioga.yml | 13 ++++++++++++- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/.gitlab/jobs/poodle.yml b/.gitlab/jobs/poodle.yml index 1178dae89e..c1fb433dbc 100644 --- a/.gitlab/jobs/poodle.yml +++ b/.gitlab/jobs/poodle.yml @@ -17,6 +17,14 @@ # project. We keep ${PROJECT__VARIANTS} and ${PROJECT__DEPS} # when possible so that the comparison with the original job is easier. +# Known issue currently under investigation +# https://github.com/LLNL/RAJA/pull/1712#issuecomment-2292006843 +intel_2023_2_1: + variables: + SPEC: "${PROJECT_POODLE_VARIANTS} %intel@=2023.2.1 ${PROJECT_POODLE_DEPS}" + extends: .job_on_poodle + allow_failure: true + # Identical to shared job, but use OpenMP tasks and no vectorization clang_14_0_6: variables: diff --git a/.gitlab/jobs/ruby.yml b/.gitlab/jobs/ruby.yml index 458e4c7b57..012a822b0d 100644 --- a/.gitlab/jobs/ruby.yml +++ b/.gitlab/jobs/ruby.yml @@ -29,6 +29,14 @@ gcc_10_3_1: SPEC: " ~shared +openmp +omptask +tests %gcc@=10.3.1 ${PROJECT_RUBY_DEPS}" extends: .job_on_ruby +# Known issue currently under investigation +# https://github.com/LLNL/RAJA/pull/1712#issuecomment-2292006843 +intel_2023_2_1: + variables: + SPEC: "${PROJECT_RUBY_VARIANTS} %intel@=2023.2.1 ${PROJECT_RUBY_DEPS}" + extends: .job_on_ruby + allow_failure: true + ############ # Extra jobs ############ diff --git a/.gitlab/jobs/tioga.yml b/.gitlab/jobs/tioga.yml index 308b155ba9..b1e08cb469 100644 --- a/.gitlab/jobs/tioga.yml +++ b/.gitlab/jobs/tioga.yml @@ -17,7 +17,13 @@ # project. We keep ${PROJECT__VARIANTS} and ${PROJECT__DEPS} # So that the comparison with the original job is easier. -# No overridden jobs so far. +# Compiler error preventing a test to succeed. +# https://github.com/LLNL/RAJA/pull/1712#issuecomment-2316335119 +cce_18_0_0: + variables: + SPEC: "${PROJECT_TIOGA_VARIANTS} %cce@=18.0.0 ${PROJECT_TIOGA_DEPS}" + extends: .job_on_tioga + allow_failure: true ############ # Extra jobs @@ -26,6 +32,11 @@ # ${PROJECT__DEPS} in the extra jobs. There is no reason not to fully # describe the spec here. +cce_17_0_1: + variables: + SPEC: "${PROJECT_TIOGA_VARIANTS} %cce@=17.0.1 ${PROJECT_TIOGA_DEPS}" + extends: .job_on_tioga + rocmcc_6_2_0_hip_desul_atomics: variables: SPEC: "~shared +rocm ~openmp +desul +tests amdgpu_target=gfx90a %rocmcc@=6.2.0 ^hip@6.2.0 ^blt@develop"