FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Building TensorFlow.dll Building TensorFlow.dll 64 bits
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Building TensorFlow.dll 64 bits
Posted: Mon Aug 21, 2017 05:33 AM
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 (fw): Select all Collapse
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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Building TensorFlow.dll 64 bits
Posted: Mon Aug 21, 2017 05:43 AM
With this go.bat file also works fine:

go.bat
Code (fw): Select all Collapse
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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Building TensorFlow.dll 64 bits
Posted: Mon Aug 21, 2017 05:58 AM
Here you have the created files:

https://bitbucket.org/fivetech/tensorflow/downloads/tensorflow_build_files.zip

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

https://github.com/FiveTechSoft/tensorflow/tree/master/tensorflow/contrib/cmake/build
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Building TensorFlow.dll 64 bits
Posted: Mon Aug 21, 2017 06:06 AM
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion