-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #288 from LLNL/v0.13.0-RC
V0.13.0 rc
- Loading branch information
Showing
553 changed files
with
8,219 additions
and
1,709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
############################################################################### | ||
# Copyright (c) 2017-23, Lawrence Livermore National Security, LLC | ||
# and RAJA Performance Suite project contributors. | ||
# See the RAJAPerf/LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: (BSD-3-Clause) | ||
############################################################################# | ||
|
||
######################## | ||
# Overridden shared jobs | ||
######################## | ||
# We duplicate the shared jobs description and add necessary changes for RAJA. | ||
# We keep ${PROJECT_<MACHINE>_VARIANTS} and ${PROJECT_<MACHINE>_DEPS} So that | ||
# the comparison with the original job is easier. | ||
|
||
# No overridden jobs so far. | ||
|
||
############ | ||
# Extra jobs | ||
############ | ||
# We do not recommend using ${PROJECT_<MACHINE>_VARIANTS} and | ||
# ${PROJECT_<MACHINE>_DEPS} in the extra jobs. There is no reason not to fully | ||
# describe the spec here. | ||
|
||
# With GitLab CI, included files cannot be empty. | ||
variables: | ||
INCLUDED_FILE_CANNOT_BE_EMPTY: "True" | ||
|
||
# INFO: This job is activated in RAJA CI, but we don't use desul atomics here | ||
#rocm_5_1_1_clang_13_0_0_desul_atomics: | ||
# variables: | ||
# SPEC: "+rocm~openmp +desul amdgpu_target=gfx906 %[email protected] ^blt@develop ^[email protected]" | ||
# extends: .build_and_test_on_corona |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
############################################################################### | ||
# Copyright (c) 2017-23, Lawrence Livermore National Security, LLC | ||
# and RAJA Performance Suite project contributors. | ||
# See the RAJAPerf/LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: (BSD-3-Clause) | ||
############################################################################## | ||
|
||
# We define the following GitLab pipeline variables: | ||
variables: | ||
|
||
# On LLNL's ruby, this pipeline creates only one allocation shared among jobs | ||
# in order to save time and resources. This allocation has to be uniquely named | ||
# so that we are sure to retrieve it and avoid collisions. | ||
ALLOC_NAME: ${CI_PROJECT_NAME}_ci_${CI_PIPELINE_ID} | ||
|
||
# Ruby | ||
# Arguments for top level allocation | ||
RUBY_BUILD_AND_TEST_SHARED_ALLOC: "--exclusive --partition=pdebug --time=45 --nodes=1" | ||
# Arguments for job level allocation | ||
RUBY_BUILD_AND_TEST_JOB_ALLOC: "--time=30 --nodes=1" | ||
# Project specific variants for ruby | ||
PROJECT_RUBY_VARIANTS: "+openmp " | ||
# Project specific deps for ruby | ||
PROJECT_RUBY_DEPS: "" | ||
|
||
# Corona | ||
# Arguments for top level allocation | ||
CORONA_BUILD_AND_TEST_SHARED_ALLOC: "--time-limit=60m --nodes=1" | ||
# Arguments for job level allocation | ||
CORONA_BUILD_AND_TEST_JOB_ALLOC: "--time-limit=30m --nodes=1" | ||
# Project specific variants for corona | ||
PROJECT_CORONA_VARIANTS: "~openmp " | ||
# Project specific deps for corona | ||
PROJECT_CORONA_DEPS: "^blt@develop " | ||
|
||
# Lassen and Butte use a different job scheduler (spectrum lsf) that does not | ||
# allow pre-allocation the same way slurm does. | ||
# Arguments for job level allocation | ||
LASSEN_BUILD_AND_TEST_JOB_ALLOC: "1 -W 30" | ||
# Project specific variants for lassen | ||
PROJECT_LASSEN_VARIANTS: "+openmp " | ||
# Project specific deps for lassen | ||
PROJECT_LASSEN_DEPS: "" | ||
|
||
# Configuration shared by build and test jobs specific to this project. | ||
# Not all configuration can be shared. Here is here projects can fine tune the | ||
# CI behavior. | ||
# See Umpire for an example (export junit test reports). | ||
.custom_build_and_test: | ||
artifacts: | ||
reports: | ||
junit: junit.xml |
Oops, something went wrong.