Minimum
Takes two inputs and returns the smallest of the two, element-wise.
The supported data types are Int8, Int16, Int32, Int64, Uin8, Float16, Float32, Float64 and Bool. In the case of Bool, a value of true is considered larger than false. The two inputs must have the same data type, and the output data type will be the same as the input. The two inputs must also have the same shape, or be broadcastable to a common shape. The output will have the same shape as the input, or as the common shape that was broadcasted to.