MCPcopy Create free account
hub / github.com/apache/singa / max

Function max

python/singa/autograd.py:3467–3475  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

3465
3466
3467def 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
3478class And(Operator):

Callers 15

_random_fillFunction · 0.85
__init__Method · 0.85
__init__Method · 0.85
TESTFunction · 0.85
DebugMethod · 0.85
CudnnConvHandleMethod · 0.85
InitCudnnMethod · 0.85
ForwardMethod · 0.85
BackwardMethod · 0.85
ForwardMaxPoolingMethod · 0.85
ForwardAvgPoolingMethod · 0.85
BackwardAvgPoolingMethod · 0.85

Calls 1

MaxClass · 0.85

Tested by 1

TESTFunction · 0.68