-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into tupek/contact_adjoint
- Loading branch information
Showing
35 changed files
with
1,205 additions
and
218 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ __pycache__/ | |
view | ||
/_serac_build_and_test* | ||
build-linux-*-*-* | ||
*.core |
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,49 @@ | ||
#### | ||
# This is the shared configuration of jobs for toss4_cray | ||
.on_toss4_cray: | ||
variables: | ||
SCHEDULER_PARAMETERS: "--queue pci --exclusive --time-limit=${ALLOC_TIME}m --nodes=${ALLOC_NODES}" | ||
tags: | ||
- batch | ||
- tioga | ||
rules: | ||
- if: '$CI_COMMIT_BRANCH =~ /_qnone/ || $ON_TOSS4_CRAY == "OFF"' #run except if ... | ||
when: never | ||
before_script: | ||
- module load cmake/3.23.1 | ||
|
||
#### | ||
# Templates | ||
.src_build_on_toss4_cray: | ||
extends: [.src_build_script, .on_toss4_cray, .src_workflow] | ||
needs: [] | ||
|
||
.full_build_on_toss4_cray: | ||
extends: [.full_build_script, .on_toss4_cray, .full_workflow] | ||
needs: [] | ||
before_script: | ||
# LC version of pip is ancient | ||
- if [[ $(python3 -c 'import pip; print(pip.__version__ < "19.3")') == "True" ]]; then python3 -m pip install --user --upgrade pip; fi | ||
|
||
|
||
#### | ||
# Build jobs | ||
|
||
# Only run integration tests on one spec | ||
toss4_cray-clang_17_0_0-src: | ||
variables: | ||
COMPILER: "[email protected]" | ||
HOST_CONFIG: "tioga-toss_4_x86_64_ib_cray-${COMPILER}_hip.cmake" | ||
EXTRA_CMAKE_OPTIONS: "-DENABLE_BENCHMARKS=ON" | ||
ALLOC_NODES: "1" | ||
ALLOC_TIME: "30" | ||
extends: .src_build_on_toss4_cray | ||
|
||
toss4_cray-clang_17_0_0-full: | ||
variables: | ||
COMPILER: "[email protected]" | ||
SPEC: "--spec=%${COMPILER}" | ||
ALLOC_NODES: "1" | ||
ALLOC_TIME: "45" | ||
EXTRA_CMAKE_OPTIONS: "-DENABLE_BENCHMARKS=ON" | ||
extends: .full_build_on_toss4_cray |
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
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
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
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
Oops, something went wrong.