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

Function add

python/singa/autograd.py:894–898  ·  view source on GitHub ↗

Return `a+b`, where a and b are Tensor.

(a, b)

Source from the content-addressed store, hash-verified

892
893
894def add(a, b):
895 """
896 Return `a+b`, where a and b are Tensor.
897 """
898 return Add()(a, b)[0]
899
900
901class Elu(Operator):

Callers 1

add_allFunction · 0.70

Calls 1

AddClass · 0.70

Tested by

no test coverage detected