Created
August 14, 2018 20:40
-
-
Save sparticlesteve/a1222e1c51800a3c148af542a2c65ffc to your computer and use it in GitHub Desktop.
Instructions used to try and build horovod with Cray MPICH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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