Returns element-wise remainder of division.
tf.math.floormod(
x: _atypes.TensorFuzzingAnnotation[TV_FloorMod_T],
y: _atypes.TensorFuzzingAnnotation[TV_FloorMod_T],
name=None
) -> _atypes.TensorFuzzingAnnotation[TV_FloorMod_T]
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 .
|