Skip to content

Commit

Permalink
Change LC build script default parameters.
Browse files Browse the repository at this point in the history
Quartz has Intel Broadwell CPUs.
  • Loading branch information
timmoon10 authored Jun 22, 2017
1 parent 60e2799 commit 1da038f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build_lbann_lc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,9 @@ if [ "${BUILD_TYPE}" == "Release" ]; then
CXX_FLAGS="${CXX_FLAGS} -march=ivybridge -mtune=ivybridge"
Fortran_FLAGS="${Fortran_FLAGS} -march=ivybridge -mtune=ivybridge"
elif [ "${CLUSTER}" == "quartz" ]; then
C_FLAGS="${C_FLAGS} -march=ivybridge -mtune=ivybridge"
CXX_FLAGS="${CXX_FLAGS} -march=ivybridge -mtune=ivybridge"
Fortran_FLAGS="${Fortran_FLAGS} -march=ivybridge -mtune=ivybridge"
C_FLAGS="${C_FLAGS} -march=broadwell -mtune=broadwell"
CXX_FLAGS="${CXX_FLAGS} -march=broadwell -mtune=broadwell"
Fortran_FLAGS="${Fortran_FLAGS} -march=broadwell -mtune=broadwell"
elif [ "${CLUSTER}" == "surface" ]; then
C_FLAGS="${C_FLAGS} -march=sandybridge -mtune=sandybridge"
CXX_FLAGS="${CXX_FLAGS} -march=sandybridge -mtune=sandybridge"
Expand Down

0 comments on commit 1da038f

Please sign in to comment.