summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/div/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowPythonExamples/examples/div/__init__.py')
-rwxr-xr-xres/TensorFlowPythonExamples/examples/div/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/res/TensorFlowPythonExamples/examples/div/__init__.py b/res/TensorFlowPythonExamples/examples/div/__init__.py
new file mode 100755
index 000000000..2887771ff
--- /dev/null
+++ b/res/TensorFlowPythonExamples/examples/div/__init__.py
@@ -0,0 +1,5 @@
+import tensorflow as tf
+
+lhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
+rhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
+op_ = tf.compat.v1.div(lhs_, rhs_)