Commit ebf73b95 authored by Berrill, Mark's avatar Berrill, Mark
Browse files

Cleaning up build folder

parent 6909efa7
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -9,5 +9,4 @@ build/install*
build/interp*
build/null_timer
build/lib*
build/pgi*
+5 −3
Original line number Diff line number Diff line
module unload clang gnu pgi xlf cuda kokkos cmake3
module unload clang gnu pgi xlf cuda kokkos cmake
module load cuda
module load kokkos
module load cmake3
module load cmake


export KOKKOS_DIR=/ccs/home/mbt/apps/crest/TPLs/gcc/kokkos

rm -rf CMake*

cmake                                   \
@@ -13,7 +15,7 @@ cmake \
   -D CXX_STD=11                        \
   -D USE_OPENACC=0                     \
   -D USE_OPENMP=1                      \
   -D USE_KOKKOS=0                      \
   -D USE_KOKKOS=1                      \
      -D KOKKOS_DIRECTORY=${KOKKOS_DIR} \
      -D KOKKOS_WRAPPER=${KOKKOS_DIR}/bin/nvcc_wrapper \
   -D USE_CUDA=1                        \
+24 −0
Original line number Diff line number Diff line
module unload clang gnu pgi xlf cuda kokkos cmake
module load cuda
module load cmake


export KOKKOS_DIR=/ccs/home/mbt/apps/crest/TPLs/gcc/kokkos

rm -rf CMake*

cmake                                   \
   -D CMAKE_BUILD_TYPE=Release          \
   -D CMAKE_C_COMPILER=gcc              \
   -D CMAKE_CXX_COMPILER=g++            \
   -D CMAKE_CXX_FLAGS_RELEASE="-Ofast -DNDEBUG" \
   -D CXX_STD=11                        \
   -D USE_OPENACC=0                     \
   -D USE_OPENMP=1                      \
   -D USE_KOKKOS=0                      \
      -D KOKKOS_DIRECTORY=${KOKKOS_DIR} \
      -D KOKKOS_WRAPPER=${KOKKOS_DIR}/bin/nvcc_wrapper \
   -D USE_CUDA=1                        \
      -D CUDA_FLAGS="-arch sm_30"       \
   ../src
Loading