-
Notifications
You must be signed in to change notification settings - Fork 0
resolves 6: add support for cmake cxx standard #7
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
Open
prudhomm
wants to merge
26
commits into
main
Choose a base branch
from
6-add-support-for-cmake_cxx_standard
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+192
−60
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
959398f
Add support for execution matrix in CI workflow
prudhomm 748d6b7
Merge remote-tracking branch 'origin/main' into 6-add-support-for-cma…
prudhomm fc1925b
Merge branch 'main' into 6-add-support-for-cmake_cxx_standard
prudhomm 5e02036
Refactor test case configuration in CMakeLists.txt to streamline Kokk…
prudhomm 2b81d31
Update CI workflow to use env_variant for execution matrix and add Sp…
prudhomm a727431
Add message output for custom CMAKE_CXX_STANDARD setting in CMakeList…
prudhomm 294040e
Enhance CI workflow by adding build-cache job and integrating Spack f…
prudhomm 002563f
change cache name
prudhomm 9aed440
Refactor CI workflow to set up Spack earlier and streamline package i…
prudhomm 49ad8fb
Update CI workflow to disable continue-on-error and reorder Spack set…
prudhomm 12d3d03
change path to spack clone
prudhomm 5d166f2
fix build cache
prudhomm dc399f3
remove spack-bash shell specification from CMake configuration step
prudhomm c9fae1e
use self-*
prudhomm 6f7341a
use spack-bash
prudhomm 9121664
set padded length for install tree in spack configuration
prudhomm cd5278f
update CI workflow to use standard Ubuntu runner and latest Spack set…
prudhomm 3abfe6d
up setup-spack action
prudhomm db1129a
fix: update CMake shell configuration to include placeholder
prudhomm f58d1c5
feat: enhance CI workflow by adding buildcache and color options for …
prudhomm e26c03d
install spack package
prudhomm 4f0063a
feat: add test for SEM_EXECUTABLE in CMake configuration
prudhomm affbcfb
tiny fix in CMakeLists to hide warnings
thomas-saigre a1dd410
use gcc12:
thomas-saigre 3c874d4
feat: update CMake presets for ROCm support and improve build configu…
prudhomm 48802ac
Merge branch '6-add-support-for-cmake_cxx_standard' of https://github…
prudhomm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -8,3 +8,5 @@ readme_folder | |
env_old.sh | ||
./install/ | ||
./build/ | ||
*.spack-env* | ||
spack.lock |
This file contains hidden or 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 hidden or 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 hidden or 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,27 @@ | ||
# This is a Spack Environment file. | ||
# | ||
# It describes a set of packages to be installed, along with | ||
# configuration settings. | ||
spack: | ||
config: | ||
install_tree: | ||
padded_length: 128 | ||
packages: | ||
all: | ||
compiler: [gcc@14:, clang@14:18] | ||
require: ['target=x86_64_v3'] | ||
mpi: | ||
require: ['openmpi@:4 fabrics=auto'] | ||
definitions: | ||
- compilers: [gcc@12:] | ||
- packages: [caliper,chai+openmp,raja+openmp,umpire+openmp,kokkos+openmp] | ||
specs: | ||
- $compilers | ||
- matrix: | ||
- [$packages] | ||
- [$%compilers] | ||
view: true | ||
concretizer: | ||
unify: when_possible | ||
mirrors: | ||
numpex-buildcache: oci://ghcr.io/numpex/spack-buildcache |
This file contains hidden or 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,25 @@ | ||
# This is a Spack Environment file. | ||
# | ||
# It describes a set of packages to be installed, along with | ||
# configuration settings. | ||
spack: | ||
config: | ||
install_tree: | ||
padded_length: 128 | ||
packages: | ||
all: | ||
compiler: [gcc@14:, clang@14:18] | ||
require: ['target=x86_64_v3'] | ||
definitions: | ||
- compilers: [gcc@14:] | ||
- packages: ['caliper +rocm amdgpu_target=gfx90a','chai +rocm amdgpu_target=gfx90a','raja +rocm amdgpu_target=gfx90a','umpire +rocm amdgpu_target=gfx90a','kokkos@4.6: +rocm amdgpu_target=gfx90a'] | ||
specs: | ||
- $compilers | ||
- matrix: | ||
- [$packages] | ||
- [$%compilers] | ||
view: true | ||
concretizer: | ||
unify: when_possible | ||
mirrors: | ||
numpex-buildcache: oci://ghcr.io/numpex/spack-buildcache |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still this warning
The packages:all:compiler preference has been deprecated in Spack v1.0, and is currently ignored. It will be removed from config in Spack v1.2.
Oddly, I did not find any fix about this on the doc of spack