-
Notifications
You must be signed in to change notification settings - Fork 10
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 #17 from kokkos/develop
Updates to master from develop
- Loading branch information
Showing
15 changed files
with
3,742 additions
and
134 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 |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
|
||
# vscode configuration | ||
.vscode/* | ||
|
||
# output files | ||
*.out |
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 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,27 @@ | ||
#!/bin/tcsh | ||
module purge | ||
module load gcc | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-ppc-gnu-serial | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load gcc | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-ppc-gnu-openmp | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load gcc | ||
module load cuda/10.1 | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-ppc-gnu-cuda-7.0 | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
make clean |
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,45 @@ | ||
#!/bin/tcsh | ||
module purge | ||
module load gcc | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-x86-gnu-serial | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load gcc | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-x86-gnu-openmp | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load gcc | ||
module load cuda/10.1 | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-x86-gnu-cuda-3.5 | ||
setenv CUDA_LAUNCH_BLOCKING 1 | ||
setenv CUDA_MANAGED_FORCE_DEVICE_ALLOC 1 | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load intel | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-x86-intel-serial | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
module purge | ||
module load intel | ||
setenv KOKKOS_ROOT $HOME/kt/2.9-x86-intel-openmp | ||
cd $HOME/kokkos-fortran-interop/build | ||
make clean | ||
make libflcl.a | ||
make test-flcl.x | ||
time $HOME/kokkos-fortran-interop/build/test-flcl.x | ||
make clean |
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,21 @@ | ||
#!/bin/tcsh | ||
# salloc -n 1 -p power9-asc -A asc-priority | ||
# cd ~/kt | ||
# mkdir -p ~/kt/2.9-ppc-gnu-serial | ||
# mkdir -p ~/kt/2.9-ppc-gnu-openmp | ||
# mkdir -p ~/kt/2.9-ppc-gnu-cuda-3.5 | ||
# module load gcc | ||
# cd ~/kt/2.9-ppc-gnu-serial | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which g++` --with-serial | ||
# make -j test | ||
# make install | ||
# cd ~/kt/2.9-ppc-gnu-openmp | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which g++` --with-openmp | ||
# make -j test | ||
# make install | ||
# module load cuda/10.1 | ||
# cd ~/kt/2.9-ppc-gnu-cuda-7.0 | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --with-cuda=$CUDADIR --arch=Volta70 --with-cuda-options=enable_lambda,force_uvm | ||
# make -j test | ||
# make install | ||
# module purge |
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,35 @@ | ||
#!/bin/tcsh | ||
# salloc -n 1 --constraint=gpu_vendor:nvidia,cpu_vendor:Intel | ||
# cd ~/kt | ||
# mkdir -p ~/kt/2.9-x86-gnu-serial | ||
# mkdir -p ~/kt/2.9-x86-gnu-openmp | ||
# mkdir -p ~/kt/2.9-x86-gnu-cuda-3.5 | ||
# mkdir -p ~/kt/2.9-x86-intel-serial | ||
# mkdir -p ~/kt/2.9-x86-intel-openmp | ||
# module load gcc | ||
# cd ~/kt/2.9-x86-gnu-serial | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which g++` --with-serial | ||
# make -j test | ||
# make install | ||
# cd ~/kt/2.9-x86-gnu-openmp | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which g++` --with-openmp | ||
# make -j test | ||
# make install | ||
# module load cuda/10.1 | ||
# cd ~/kt/2.9-x86-gnu-cuda-3.5 | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --with-cuda=$CUDADIR --arch=Kepler35 --with-cuda-options=enable_lambda,force_uvm | ||
# setenv CUDA_LAUNCH_BLOCKING 1 | ||
# setenv CUDA_MANAGED_FORCE_DEVICE_ALLOC 1 | ||
# make -j test | ||
# make install | ||
# module purge | ||
# module load intel | ||
# cd ~/kt/2.9-x86-intel-serial | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which icpc` --with-serial | ||
# make -j test | ||
# make install | ||
# cd ~/kt/2.9-x86-intel-openmp | ||
# ../../kokkos/kokkos-2.9.00/generate_makefile.bash --prefix=`pwd` --compiler=`which icpc` --with-openmp | ||
# make -j test | ||
# make install | ||
# module purge |
Oops, something went wrong.