In-place elementwise minimum: writes back into a.
Math
See Also
minimum_op — out-of-place counterpart.
maximum_inplace_op — elementwise maximum sibling.
Parameters
aTensorImplPtrLeft operand and in-place target. Must be non-null and must not share storage with a view.
bTensorImplPtrRight operand. Must be non-null and broadcastable into
a->shape().Returns
TensorImplPtrThe same pointer as a, now holding the elementwise minima.
Raises
ShapeMismatchIf the broadcast output would change
a's shape.RuntimeErrorIf
a shares storage with a view.