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

Function min

python/singa/autograd.py:3120–3129  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

3118
3119
3120def 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
3132class Log(Operator):

Callers 15

TESTFunction · 0.85
tensor.ccFile · 0.85
ForwardMethod · 0.85
BackwardMethod · 0.85
ForwardMaxPoolingMethod · 0.85
ForwardAvgPoolingMethod · 0.85
BackwardAvgPoolingMethod · 0.85
scheduleFunction · 0.85
__init__Method · 0.85
run_phase2Method · 0.85
_check_is_max_contextFunction · 0.85

Calls 1

MinClass · 0.85

Tested by 1

TESTFunction · 0.68