This file contains 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
#!/bin/bash | |
# Enable EPEL-Release | |
sudo yum -y install epel-release | |
# CMAKE, Boost | |
sudo yum -y install cmake boost boost-devel | |
# OpenCV, Snappy, Protobuf | |
sudo yum -y install opencv opencv-devel snappy snappy-devel protobuf protobuf-devel |
This file contains 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
# | |
# All modification made by Intel Corporation: © 2016 Intel Corporation | |
# | |
# All contributions by the University of California: | |
# Copyright (c) 2014, 2015, The Regents of the University of California (Regents) | |
# All rights reserved. | |
# | |
# All other contributions: | |
# Copyright (c) 2014, 2015, the respective contributors | |
# All rights reserved. |
This file contains 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
#!/bin/bash | |
# I installed anaconda3 in /opt/anaconda3, which is a system-wide accessable | |
# make directory of 'build' from root of caffe source | |
mkdir build | |
cd build | |
# source Intel Parallel Studio (currently r2018u3) | |
source /opt/intel/parallel_studio_xe_2018/bin/psxevars.sh; |
This file contains 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
# | |
# Horovod Installation Guide | |
# | |
0a. Requirement | |
- CentOS 7.x (tested on 7.1, 7.3, 7.4) | |
- Python 3.6.x (source build, refer https://www.python.org/downloads/release/python-366/) | |
- GPU (not a prerequisit, but encouraged) | |
- all workers must share same installation process | |
- DO NOT UPDATE ANY KERNEL PACKAGES (USE WITH STOCK KERNEL PROVIDED BY CENTOS) |
This file contains 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
import os | |
import sys | |
import re | |
import pprint | |
import hashlib | |
import time | |
import urllib.request as urlreq | |
verbose_debug = True |
NewerOlder