tf.compat.v1.assert_rank

Assert x has rank equal to rank.

Example of adding a dependency to an operation:

with tf.control_dependencies([tf.compat.v1.assert_rank(x, 2)]):
  output = tf.reduce_sum(x)

xNumeric Tensor.
rankScalar integer Tensor.
dataThe tensors to print out if the condition is False. Defaults to error message and the shape of x.
summarizePrint this many entries of each tensor.
messageA string to prefix to the default message.
nameA name for this operation (optional). Defaults to "assert_rank".

Op raising InvalidArgumentError unless x has specified rank. If static checks determine x has correct rank, a no_op is returned.

ValueErrorIf static checks determine x has wrong rank.