Element-wise min of each of the input tensors (with Numpy-style broadcasting support). Args: *x (a list of Tensor): List of tensors for max. Returns: Tensor, the output
(*l)
| 3118 | |
| 3119 | |
| 3120 | def min(*l): |
| 3121 | """ |
| 3122 | Element-wise min of each of the input tensors (with Numpy-style |
| 3123 | broadcasting support). |
| 3124 | Args: |
| 3125 | *x (a list of Tensor): List of tensors for max. |
| 3126 | Returns: |
| 3127 | Tensor, the output |
| 3128 | """ |
| 3129 | return Min()(*l)[0] |
| 3130 | |
| 3131 | |
| 3132 | class Log(Operator): |