You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # This script is for installing horovod on travis-CI only!
-
- set -e
-
- [ ! -z "$1" ] && export PATH=$1:$PATH
-
- mkdir -p /opt
- chmod a+rx /opt
- cd /opt
- wget https://github.com/lgarithm/openmpi-release/raw/master/releases/openmpi-bin-3.1.0.tar.bz2
- tar -xf openmpi-bin-3.1.0.tar.bz2
-
- PATH=/opt/openmpi/bin:$PATH pip install horovod
-
- echo "done $0"
|