tf.raw_ops.For

Applies a for loop.

   output = input;
   for i in range(start, limit, delta)
     output = body(i, output);

startA Tensor of type int32. The lower bound. An int32
limitA Tensor of type int32. The upper bound. An int32
deltaA Tensor of type int32. The increment. An int32
inputA list of Tensor objects. A list of input tensors whose types are T.
bodyA function decorated with @Defun. A function that takes a list of tensors (int32, T) and returns another list of tensors (T).
nameA name for the operation (optional).

A list of Tensor objects. Has the same type as input.