aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/how_tos/adding_an_op/index.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-13 15:34:59 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-13 16:42:31 -0700
commitfdeb361328a462447473fa987c38dd4f14f739da (patch)
treee058f44c759bdaa2da321b614fca7907518cde17 /tensorflow/g3doc/how_tos/adding_an_op/index.md
parent4949eac39ecb4f2ce59c0e4fe1afd0d364b039b2 (diff)
Enforce the rule that custom op libraries don't depend on core:framework or
core:lib Change: 122307941
Diffstat (limited to 'tensorflow/g3doc/how_tos/adding_an_op/index.md')
-rw-r--r--tensorflow/g3doc/how_tos/adding_an_op/index.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/tensorflow/g3doc/how_tos/adding_an_op/index.md b/tensorflow/g3doc/how_tos/adding_an_op/index.md
index 7b067ebb12..8ba5780f73 100644
--- a/tensorflow/g3doc/how_tos/adding_an_op/index.md
+++ b/tensorflow/g3doc/how_tos/adding_an_op/index.md
@@ -172,12 +172,6 @@ Run the following command to build `zero_out.so`.
$ bazel build -c opt //tensorflow/core/user_ops:zero_out.so
```
-> Note:
-Although you can create a shared library (a `.so` file) with the standard
-`cc_library` rule, we strongly recommend that you use the `tf_custom_op_library`
-macro. It adds some required dependencies, and performs checks to ensure that
-the shared library is compatible with TensorFlow's plugin loading mechanism.
-
## Using the Op in Python
TensorFlow Python API provides the