https://github.com/Microsoft/CNTK
Raw File
Tip revision: 632cc47317f3dc599870282ad09d3e26a3dad28f authored by Eldar Akchurin on 12 May 2017, 17:43:56 UTC
Fixing cudnn in case of 1-D arrays
Tip revision: 632cc47
swig_install.sh
#!/bin/bash

wget http://prdownloads.sourceforge.net/swig/swig-3.0.10.tar.gz

tar xvfz swig-3.0.10.tar.gz

pushd swig-3.0.10

./configure --without-java --without-perl5 --prefix=$(readlink -m ./root)

make -j 4

make install
back to top