summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/floordiv/__init__.py
blob: 34f413f2bdfc78de80fcb60f1e8d220be247302e (plain)
1
2
3
4
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.floordiv(lhs_, rhs_)