https://github.com/Microsoft/CNTK
Raw File
Tip revision: fb8c7fcf00bd06aec08ee31d3ea078858a589fc7 authored by Frank Seide on 03 June 2017, 17:56:37 UTC
changed PrimitiveAsComposite() to directly calling CompositeFunction::Create()
Tip revision: fb8c7fc
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