Returns element-wise remainder of division.
tf.raw_ops.FloorMod(
x, y, name=None
)
This follows Python semantics in that the
result here is consistent with a flooring divide. E.g.
floor(x / y) * y + floormod(x, y) = x
, regardless of the signs of x and y.
Returns | |
---|---|
A Tensor . Has the same type as x .
|