Element-wise max 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)
| 3465 | |
| 3466 | |
| 3467 | def max(*l): |
| 3468 | """ |
| 3469 | Element-wise max of each of the input tensors (with Numpy-style broadcasting support). |
| 3470 | Args: |
| 3471 | *x (a list of Tensor): List of tensors for max. |
| 3472 | Returns: |
| 3473 | Tensor, the output |
| 3474 | """ |
| 3475 | return Max()(*l)[0] |
| 3476 | |
| 3477 | |
| 3478 | class And(Operator): |