Reputation: 24581
The release notes for tensorflow 1.2 says that
- TensorFlow C library now available for Windows.
Nice. However the page dedicated to the C API on tensorflow's web site gives instructions for Linux and Mac OS X only.
What do the authors means when they say a Windows C library is "available", especially when they do not officially support building from sources on Windows? Is there a precompiled binary somewhere?
Upvotes: 2
Views: 3446
Reputation: 101
All "official" builds are listed here: https://storage.googleapis.com/tensorflow (also can be downloaded from there )
Upvotes: 1
Reputation: 23
Remark, that there are newer versions of the tensorflow c api for windows. If you change the version number at the end of the URL, you can download the latest versions. Current is:
https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-windows-x86_64-1.9.0.zip
Upvotes: 2
Reputation: 384
you can use pywrap_tensorflow_internal.lib as well. then you get cpu and gpu usage, too.
the things you need are
Upvotes: 1
Reputation: 47159
The documentation hasn't been updated yet, although in the meantime you can download the library here:
https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-windows-x86_64-1.2.0.zip
↳ https://github.com/tensorflow/tensorflow/issues/10817
Upvotes: 2