summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/floordiv/__init__.py
blob: 5714bf5632e4429a44e7a73bcb10806e3a6fa4c6 (plain)
1
2
3
4
5
6
7
import tensorflow as tf

tf.compat.v1.disable_eager_execution()

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.floordiv(lhs_, rhs_)