Skip to content

Instantly share code, notes, and snippets.

@sparticlesteve
Created August 14, 2018 20:40
Show Gist options
  • Save sparticlesteve/a1222e1c51800a3c148af542a2c65ffc to your computer and use it in GitHub Desktop.
Save sparticlesteve/a1222e1c51800a3c148af542a2c65ffc to your computer and use it in GitHub Desktop.
Instructions used to try and build horovod with Cray MPICH
conda activate $INSTALL_DIR
# Set compile flags
export CRAYPE_LINK_TYPE=dynamic
export CC=CC
export CXX=CC
export CFLAGS="-g"
export CXXFLAGS="-g"
export HOROVOD_MPICXX_SHOW="$PWD/showMPI.sh"
export HOROVOD_WITHOUT_TENSORFLOW=1
# Clone and build horovod
set -ex
cd $BUILD_DIR
git clone -b $HOROVOD_VERSION [email protected]:uber/horovod.git
cd horovod
python setup.py install -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment