https://github.com/Microsoft/CNTK
Raw File
Tip revision: 45cae0cd27ffaaf04d7606e999210207a75e4a17 authored by Vadim Mazalov on 10 February 2017, 00:49:02 UTC
Add prints to GPUMatrix and CTC
Tip revision: 45cae0c
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