Skip to content

Commit

Permalink
remove aos from blue waters build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jtkrogel committed May 19, 2020
1 parent bbbe1a8 commit db40cad
Showing 1 changed file with 3 additions and 26 deletions.
29 changes: 3 additions & 26 deletions config/blue_waters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## on Blue Waters, University of Illinois Urbana-Champaign ##
## highly similar to OLCF Titan build script ##
## ##
## Last modified: Jan 31, 2020 ##
## Last modified: 19 May 2020 ##
################################################################

# Load required modules (assuming default settings have not been modified)
Expand Down Expand Up @@ -86,7 +86,7 @@ echo ""
echo "building qmcpack for cpu real"
mkdir build$suffix
cd build$suffix
cmake $CMAKE_FLAGS -D ENABLE_SOA=1 ..
cmake $CMAKE_FLAGS ..
make -j 32 $target
cd ..
ln -s ./build$suffix/bin/qmcpack ./qmcpack$suffix
Expand All @@ -98,30 +98,7 @@ echo ""
echo "building qmcpack for cpu complex"
mkdir build$suffix
cd build$suffix
cmake $CMAKE_FLAGS -D QMC_COMPLEX=1 -D ENABLE_SOA=1 ..
make -j 32 $target
cd ..
ln -s ./build$suffix/bin/qmcpack ./qmcpack$suffix

# Configure and build cpu Array-of-Structure (AoS) version for more features
suffix=_cpu_real_AoS
echo ""
echo ""
echo "building AoS qmcpack for cpu real"
mkdir build$suffix
cd build$suffix
cmake $CMAKE_FLAGS -D ENABLE_SOA=0 ..
make -j 32 $target
cd ..
ln -s ./build$suffix/bin/qmcpack ./qmcpack$suffix

suffix=_cpu_comp_AoS
echo ""
echo ""
echo "building AoS qmcpack for cpu complex"
mkdir build$suffix
cd build$suffix
cmake $CMAKE_FLAGS -D QMC_COMPLEX=1 -D ENABLE_SOA=0 ..
cmake $CMAKE_FLAGS -D QMC_COMPLEX=1 ..
make -j 32 $target
cd ..
ln -s ./build$suffix/bin/qmcpack ./qmcpack$suffix
Expand Down

0 comments on commit db40cad

Please sign in to comment.