Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowPythonExamples / examples / reduce_prod / __init__.py
1 import tensorflow as tf
2
3 in_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(2, 2), name="Hole")
4 op_ = tf.compat.v1.math.reduce_prod(in_)