mirror of
https://github.com/paboyle/Grid.git
synced 2026-06-04 11:14:38 +01:00
bbdc8e95f4
Reduces compile time significantly by skipping representations not needed for the staggered HDCG work. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
636 B
Bash
21 lines
636 B
Bash
#!/usr/bin/env bash
|
|
# Configure Grid from a build directory two levels below the source root,
|
|
# e.g.: mkdir -p systems/mac-arm/build && cd systems/mac-arm/build && bash ../config-command-homebrew
|
|
#
|
|
# Prerequisites: source sourceme-homebrew.sh first.
|
|
|
|
CXX=mpicxx ../../configure \
|
|
--enable-simd=GEN \
|
|
--enable-comms=mpi-auto \
|
|
--enable-unified=yes \
|
|
--prefix="${HOME}/Grid-install" \
|
|
--with-lime="${CLIME}" \
|
|
--with-openssl="${OPENSSL}" \
|
|
--with-gmp="${GMP}" \
|
|
--with-mpfr="${MPFR}" \
|
|
--with-fftw="${FFTW}" \
|
|
--disable-Sp \
|
|
--disable-fermion-reps \
|
|
--disable-gparity \
|
|
--disable-debug
|