aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/adding_an_op/zero_out_op_1.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-03-03 12:42:42 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-03 13:05:58 -0800
commit88c9fb09bd667df03cdf7e9f75ff225853ad01e1 (patch)
tree7f352980385adf8cd8e851554c393927917ab9be /tensorflow/examples/adding_an_op/zero_out_op_1.py
parent20af1b7baa0452256c761a5961966a82b796162a (diff)
Restore the adding_an_op code examples that used to live under
g3doc/, now under examples/. Partial fix of #8029. Change: 149142119
Diffstat (limited to 'tensorflow/examples/adding_an_op/zero_out_op_1.py')
-rw-r--r--tensorflow/examples/adding_an_op/zero_out_op_1.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/tensorflow/examples/adding_an_op/zero_out_op_1.py b/tensorflow/examples/adding_an_op/zero_out_op_1.py
new file mode 100644
index 0000000000..6bd98b1f06
--- /dev/null
+++ b/tensorflow/examples/adding_an_op/zero_out_op_1.py
@@ -0,0 +1,27 @@
+# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ==============================================================================
+"""ZeroOut op Python library."""
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+import os.path
+
+import tensorflow as tf
+
+_zero_out_module = tf.load_op_library(
+ os.path.join(tf.resource_loader.get_data_files_path(),
+ 'zero_out_op_kernel_1.so'))
+zero_out = _zero_out_module.zero_out