aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/examples/eager/spinn/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/examples/eager/spinn/BUILD')
-rw-r--r--third_party/examples/eager/spinn/BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/examples/eager/spinn/BUILD b/third_party/examples/eager/spinn/BUILD
new file mode 100644
index 0000000000..0e39d4696f
--- /dev/null
+++ b/third_party/examples/eager/spinn/BUILD
@@ -0,0 +1,14 @@
+licenses(["notice"]) # 3-clause BSD.
+
+py_binary(
+ name = "spinn",
+ srcs = ["spinn.py"],
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+ deps = [
+ "//tensorflow:tensorflow_py",
+ "//tensorflow/contrib/eager/python:tfe",
+ "//tensorflow/contrib/eager/python/examples/spinn:data",
+ "@six_archive//:six",
+ ],
+)