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
# On Ubuntu 14.04 with Titan X (compute capability 5.2) | |
# There are some missing parts that you have to specify, and some files you have to download manaully from web, so don't run this script file as it is. | |
# Configure CUDA paths | |
echo export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib64" >> ~/.bashrc | |
echo export CUDA_HOME="/usr/local/cuda" >> ~/.bashrc | |
source ~/.bashrc | |
# Set up java | |
# Dependencies for Bazel | |
# Download jdk 8 |
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
# install torch on ec2 g2 instance | |
# installing torch | |
curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash # prereqs | |
git clone https://github.com/torch/distro.git ~/torch --recursive | |
cd ~/torch; ./install.sh | |
source ~/.bashrc | |
# confirm torch is installed | |
th |
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
# In tensorflow folder | |
git pull | |
./configure | |
bazel build -c opt --config=cuda //tensorflow/tools/pip_package:build_pip_package | |
bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg | |
sudo pip install /tmp/tensorflow_pkg/SOME_NAME |
NewerOlder