aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/experimental
diff options
context:
space:
mode:
authorGravatar Jared Duke <jdduke@google.com>2018-08-07 10:18:53 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-07 10:28:54 -0700
commitb7950bce77bf74dcf2c11fb2f4bb45f6e673f82d (patch)
tree72fa241a370147ad1abae54aa6b9ff78fc854a3f /tensorflow/contrib/lite/experimental
parent1a22e9a608b43cbdf7d990d09c7d317ee3c57d8c (diff)
Fix Windows TFLite builds
The Unity TFLite plugin should now run successfully on Windows, though it requires renaming `libtensorflowlite_c.so` to `tensorflowlite_c.dll` in the Plugins folder. PiperOrigin-RevId: 207736531
Diffstat (limited to 'tensorflow/contrib/lite/experimental')
-rw-r--r--tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/README.md b/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/README.md
index c0dcb090b4..f480c49cd0 100644
--- a/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/README.md
+++ b/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/README.md
@@ -1,6 +1,6 @@
# TF Lite Experimental Unity Plugin
-This directoryy contains an experimental sample Unity (2017) Plugin, based on
+This directory contains an experimental sample Unity (2017) Plugin, based on
the experimental TF Lite C API. The sample demonstrates running inference within
Unity by way of a C# `Interpreter` wrapper.
@@ -25,3 +25,5 @@ bazel build -c opt --cxxopt=--std=c++11 \
If you encounter issues with native plugin discovery on Mac ("Darwin")
platforms, try renaming `libtensorflowlite_c.so` to `tensorflowlite_c.bundle`.
+Similarly, on Windows you'll likely need to rename `libtensorflowlite_c.so` to
+`tensorflowlite_c.dll`.