Returns the size of a tensor. This operation returns an integer representing the number of elements in `input`. For example: ```python t = tf.constant([[[1, 1, 1], [2, 2, 2]], [[3, 3, 3], [4, 4, 4]]]) tf.size(t) # 12 ``` Args: input: A `Tensor` or `SparseTensor`. name: A
(input, name=None, out_type=dtypes.int32)
source not stored for this graph (policy: none)
no test coverage detected