What I want to do
M = tf.concat([tensor]*N, axix = 0)
But now, N is a tensor that decided in run time.
other_tensor = tf.placeholder(dtype=tf.int32, shape=[None, 2])
N = tf.shape(other_tensor)[0] # N is None, and it is decided in run time.
So, how to do this?