aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/imperative/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/imperative/BUILD')
-rw-r--r--tensorflow/contrib/imperative/BUILD92
1 files changed, 0 insertions, 92 deletions
diff --git a/tensorflow/contrib/imperative/BUILD b/tensorflow/contrib/imperative/BUILD
deleted file mode 100644
index df6e5c4e0a..0000000000
--- a/tensorflow/contrib/imperative/BUILD
+++ /dev/null
@@ -1,92 +0,0 @@
-# Description:
-# Imperative mode for TensorFlow.
-
-licenses(["notice"]) # Apache 2.0
-
-exports_files(["LICENSE"])
-
-package(default_visibility = ["//tensorflow:__subpackages__"])
-
-load("//tensorflow:tensorflow.bzl", "cuda_py_test")
-
-py_library(
- name = "imperative",
- srcs = [
- "__init__.py",
- "imperative_graph.py",
- "imperative_mode.py",
- ],
- srcs_version = "PY2AND3",
- deps = [
- ":imperative_graph",
- ":imperative_mode",
- "//tensorflow/core:protos_all_py",
- "//tensorflow/python:array_ops",
- "//tensorflow/python:client",
- "//tensorflow/python:control_flow_ops",
- "//tensorflow/python:dtypes",
- "//tensorflow/python:errors",
- "//tensorflow/python:framework",
- "//tensorflow/python:framework_ops",
- "//tensorflow/python:state_ops",
- "//tensorflow/python:tensor_shape",
- "//tensorflow/python:util",
- "//tensorflow/python:variables",
- ],
-)
-
-py_library(
- name = "imperative_graph",
- srcs = ["imperative_graph.py"],
- srcs_version = "PY2AND3",
- deps = [
- "//tensorflow/core:protos_all_py",
- "//tensorflow/python:array_ops",
- "//tensorflow/python:control_flow_ops",
- "//tensorflow/python:dtypes",
- "//tensorflow/python:errors",
- "//tensorflow/python:framework_ops",
- "//tensorflow/python:state_ops",
- "//tensorflow/python:tensor_shape",
- "//tensorflow/python:util",
- "//tensorflow/python:variables",
- ],
-)
-
-py_library(
- name = "imperative_mode",
- srcs = ["imperative_mode.py"],
- srcs_version = "PY2AND3",
- deps = [
- ":imperative_graph",
- "//tensorflow/python:client",
- "//tensorflow/python:errors",
- "//tensorflow/python:framework",
- "//tensorflow/python:framework_ops",
- ],
-)
-
-cuda_py_test(
- name = "imperative_test",
- size = "small",
- srcs = ["imperative_test.py"],
- additional_deps = [
- ":imperative_mode",
- "//third_party/py/numpy",
- "//tensorflow/python:client_testlib",
- "//tensorflow/python:training",
- "//tensorflow/python:framework_test_lib",
- ],
-)
-
-filegroup(
- name = "all_files",
- srcs = glob(
- ["**/*"],
- exclude = [
- "**/METADATA",
- "**/OWNERS",
- ],
- ),
- visibility = ["//tensorflow:__subpackages__"],
-)