-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script for cray compiler on AMD GPU
cce/15.0.1 required instead of default to avoid segfaults rocm/5.1.0 required instead of default to avoid diagonalization tests failures (double and double complex)
- Loading branch information
1 parent
d1d6e71
commit 183a994
Showing
2 changed files
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
|
||
# Make sure all the paths are correct | ||
|
||
rm -r build | ||
rm -r install | ||
|
||
MY_PATH=$(pwd) | ||
|
||
export CC=${CC:=cc} | ||
export FC=${FC:=ftn} | ||
export CXX=${CXX:=CC} | ||
|
||
export BLAS_VENDOR=${BLAS_VENDOR:=OpenBLAS} | ||
|
||
export BML_OPENMP=${BML_OPENMP:=yes} | ||
|
||
export BML_MAGMA=${BML_MAGMA:=yes} | ||
export MAGMA_ROOT=${OLCF_MAGMA_ROOT} | ||
export BML_ROCSOLVER=${BML_ROCSOLVER:=no} | ||
export BML_TESTING=${BML_TESTING:=yes} | ||
export CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:=Release} | ||
export INSTALL_DIR="/autofs/nccs-svm1_proj/csc304/bml/crusher/cce" | ||
export EXTRA_FFLAGS=${EXTRA_FCFLAGS:="-hsystem_alloc"} | ||
|
||
export BML_NONMPI_PRECOMMAND=${BML_NONMPI_PRECOMMAND:="srun"} | ||
export BML_NONMPI_PRECOMMAND_ARGS=${BML_NONMPI_PRECOMMAND_ARGS:="-n1;-c4;--gpus=1"} | ||
|
||
./build.sh configure | ||
|
||
pushd build | ||
make -j8 | ||
make install | ||
popd |
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,7 @@ | ||
#!/bin/bash | ||
module load craype-accel-amd-gfx90a | ||
module load cmake | ||
module load rocm/5.1.0 | ||
module load magma/2.6.1 | ||
module load cce/15.0.1 | ||
module load openblas |