-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix vtk recipe multiple cxx flags; add no avx compiler flags
- Loading branch information
Showing
3 changed files
with
27 additions
and
3 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 |
---|---|---|
|
@@ -43,6 +43,7 @@ echo "Building all LC TPLs from $GEOS_BRANCH to be installed at $INSTALL_DIR..." | |
|
||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR ruby clang-14 "%[email protected] +docs" "salloc -N 1 -n 1 -t 150 -A vortex" $@ & | ||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR ruby gcc-12 "%[email protected] +docs" "salloc -N 1 -n 1 -t 150 -A vortex" $@ & | ||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR ruby gcc-12noAVX "%gcc@12noAVX +docs" "salloc -N 1 -n 1 -t 150 -A vortex" $@ & | ||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR dane gcc-12 "%[email protected] +docs" "salloc -N 1 -n 1 -t 150 -A vortex" $@ & | ||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR lassen gcc-8-cuda-11 "%[email protected]+cuda~uncrustify cuda_arch=70 ^[email protected]+allow-unsupported-compilers" "lalloc 1 -W 150" $@ & | ||
./scripts/setupLC-TPL-uberenv-helper.bash $INSTALL_DIR lassen clang-13-cuda-11 "%[email protected]+cuda~uncrustify cuda_arch=70 ^[email protected]+allow-unsupported-compilers" "lalloc 1 -W 150" $@ & | ||
|
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 |
---|---|---|
|
@@ -12,11 +12,16 @@ | |
|
||
# geosx@develop%[email protected] | ||
# geosx@develop%[email protected] | ||
# geosx@develop%gcc@noAVX | ||
# | ||
# Uberenv command to build geos dependencies: | ||
# python3 ./scripts/uberenv/uberenv.py --spec="%[email protected] +docs" | ||
# | ||
# python3 ./scripts/uberenv/uberenv.py --spec="%[email protected] +docs" | ||
# | ||
# No AVX instructions | ||
# python3 ./scripts/uberenv/uberenv.py --spec="%gcc@12noAVX +docs" | ||
|
||
|
||
spack: | ||
config: | ||
|
@@ -55,7 +60,23 @@ spack: | |
cxx: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/g++ | ||
f77: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/gfortran | ||
fc: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/gfortran | ||
flags: {} | ||
operating_system: rhel8 | ||
target: x86_64 | ||
modules: [] | ||
environment: | ||
set: # Needed for scotch | ||
BISON: bison | ||
FLEX: flex | ||
extra_rpaths: [] | ||
- compiler: | ||
spec: gcc@12noAVX | ||
paths: | ||
cc: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/gcc | ||
cxx: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/g++ | ||
f77: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/gfortran | ||
fc: /usr/tce/packages/gcc/gcc-12.1.1-magic/bin/gfortran | ||
flags: | ||
cxxflags: -march=x86-64-v2 -mno-avx512f | ||
operating_system: rhel8 | ||
target: x86_64 | ||
modules: [] | ||
|
@@ -114,6 +135,8 @@ spack: | |
externals: | ||
- spec: [email protected]%[email protected] process_managers=slurm | ||
prefix: /usr/tce/packages/mvapich2/mvapich2-2.3.7-gcc-12.1.1-magic | ||
- spec: [email protected]%gcc@12noAVX process_managers=slurm | ||
prefix: /usr/tce/packages/mvapich2/mvapich2-2.3.7-gcc-12.1.1-magic | ||
- spec: [email protected]%[email protected] process_managers=slurm | ||
prefix: /usr/tce/packages/mvapich2/mvapich2-2.3.7-clang-14.0.6-magic | ||
|
||
|
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