start new:
tmux
start new with session name:
tmux new -s myname
#!/bin/bash | |
# install CUDA Toolkit v8.0 | |
# instructions from https://developer.nvidia.com/cuda-downloads (linux -> x86_64 -> Ubuntu -> 16.04 -> deb (network)) | |
CUDA_REPO_PKG="cuda-repo-ubuntu1604_8.0.61-1_amd64.deb" | |
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/${CUDA_REPO_PKG} | |
sudo dpkg -i ${CUDA_REPO_PKG} | |
sudo apt-get update | |
sudo apt-get -y install cuda |
C:\Program Files (x86)\Microsoft Visual Studio 14.0>luarocks install nn | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0>rem=rem --[[ | |
Installing https://raw.githubusercontent.com/torch/rocks/master/nn-scm-1.rockspec... | |
Using https://raw.githubusercontent.com/torch/rocks/master/nn-scm-1.rockspec... switching to 'build' mode | |
remote: Counting objects: 300, done. | |
Cloning into 'nn'...objects: 31% (79/254) | |
remote: Compressing objects: 100% (254/254), done. | |
remote: Total 300 (delta 70), reused 149 (delta 43), pack-reused 0 | |
Receiving objects: 100% (300/300), 568.87 KiB | 267.00 KiB/s, done. |
/* | |
* AppSettings.h | |
* | |
* Created on: 13 ìàÿ 2015 ã. | |
* Author: Anakod | |
*/ | |
#include <SmingCore/SmingCore.h> | |
#ifndef INCLUDE_APPSETTINGS_H_ |