Building TensorFlow.dll 64 bits

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Building TensorFlow.dll 64 bits

Post by Antonio Linares »

0. Clone tensorflow repository from GitHub:

git.exe clone "https://github.com/tensorflow/tensorflow" "C:\tensorflow"

1. Go to c:\tensorflow\tensorflow\contrib\cmake

2. Create a build folder

3. cd build and create and run this file:

go.bat

Code: Select all

call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
cmake .. -A x64 -DCMAKE_BUILD_TYPE=Release -DSWIG_EXECUTABLE=c:\software\swigwin-3.0.12\swig.exe -DPYTHON_EXECUTABLE=c:\Users\Administrator\appdata\Local\Programs\Python\Python36\python.exe -DPYTHON_LIBRARIES=c:\Users\Administrator\appdata\Local\Programs\Python\Python36\libs\python36.lib -DNUMPY_INCLUDE_DIR=c:\software\numpy-1.13.1\numpy\core\include\numpy
 
Important: Visual Studio Community 2015 is required. It does not work with Visual Studio Community 2017
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Building TensorFlow.dll 64 bits

Post by Antonio Linares »

With this go.bat file also works fine:

go.bat

Code: Select all

call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
cmake .. -DSWIG_EXECUTABLE=c:\software\swigwin-3.0.12\swig.exe -DNUMPY_INCLUDE_DIR=c:\software\numpy-1.13.1\numpy\core\include\numpy
c:\tf\tensorflow\contrib\cmake\build>call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
-- Found SWIG: C:/software/swigwin-3.0.12/swig.exe (found version "3.0.12")
-- Configuring done
-- Generating done
-- Build files have been written to: C:/tf/tensorflow/contrib/cmake/build
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Building TensorFlow.dll 64 bits

Post by Antonio Linares »

Here you have the created files:

https://bitbucket.org/fivetech/tensorfl ... _files.zip

I have also forked the original TensorFlow project on GitHub and I have commited the created files:

https://github.com/FiveTechSoft/tensorf ... make/build
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Building TensorFlow.dll 64 bits

Post by Antonio Linares »

Original creation notes from Google are here:

https://github.com/FiveTechSoft/tensorf ... trib/cmake
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply