From 20cd4852eede49d2db97409eabb0e6a7127c81c4 Mon Sep 17 00:00:00 2001 From: Damien L-G Date: Thu, 16 Jan 2025 07:34:13 -0500 Subject: [PATCH 1/2] Remove AWS build scripts --- Intro-Full/BuildScripts/aws-cmake-config.sh | 11 ----------- Intro-Full/BuildScripts/aws-gmake-config.sh | 10 ---------- 2 files changed, 21 deletions(-) delete mode 100755 Intro-Full/BuildScripts/aws-cmake-config.sh delete mode 100755 Intro-Full/BuildScripts/aws-gmake-config.sh diff --git a/Intro-Full/BuildScripts/aws-cmake-config.sh b/Intro-Full/BuildScripts/aws-cmake-config.sh deleted file mode 100755 index e9f0a169..00000000 --- a/Intro-Full/BuildScripts/aws-cmake-config.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -ex -cmake3 $HOME/Kokkos/kokkos \ --DCMAKE_INSTALL_PREFIX=$HOME/Kokkos/kokkos-cmake-install \ --DKokkos_ENABLE_CUDA=ON \ --DKokkos_ENABLE_SERIAL=ON \ --DCMAKE_CXX_COMPILER=$HOME/Kokkos/kokkos/bin/nvcc_wrapper \ --DKokkos_ARCH_BDW=ON \ --DKokkos_ARCH_VOLTA70=ON \ --DKokkos_ENABLE_DEPRECATED_CODE=OFF \ --DKokkos_ENABLE_CUDA_LAMBDA=ON \ --DCMAKE_CXX_FLAGS="-O3 -g" diff --git a/Intro-Full/BuildScripts/aws-gmake-config.sh b/Intro-Full/BuildScripts/aws-gmake-config.sh deleted file mode 100755 index 0b6ebe3d..00000000 --- a/Intro-Full/BuildScripts/aws-gmake-config.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -ex -$HOME/Kokkos/kokkos/generate_makefile.bash \ ---prefix=$HOME/Kokkos/kokkos-gmake-install \ ---with-cuda \ ---with-serial \ ---compiler=$HOME/Kokkos/kokkos/bin/nvcc_wrapper \ ---arch="BDW,Volta70" \ ---with-options="disable_deprecated_code" \ ---with-cuda-options="enable_lambda" \ ---cxxflags="-O3 -g" From 712fda9016ef324bc8ce705918060c988639e3b5 Mon Sep 17 00:00:00 2001 From: Damien L-G Date: Thu, 16 Jan 2025 07:34:40 -0500 Subject: [PATCH 2/2] Remove script to adjust the arch in makefiles --- Scripts/adjust_arch | 6 ------ 1 file changed, 6 deletions(-) delete mode 100755 Scripts/adjust_arch diff --git a/Scripts/adjust_arch b/Scripts/adjust_arch deleted file mode 100755 index efb719e0..00000000 --- a/Scripts/adjust_arch +++ /dev/null @@ -1,6 +0,0 @@ -for file in $1/*/*/Makefile -do - sed -i.bak 's|'$2'|'$3'|g' $file - #sed -i.bak 's|${HOME}/kokkos|${HOME}/Kokkos/kokkos|g' $file - rm ${file}.bak -done