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

Function add_all

python/singa/autograd.py:2659–2664  ·  view source on GitHub ↗
(*xs)

Source from the content-addressed store, hash-verified

2657
2658
2659def add_all(*xs):
2660 assert len(xs) > 2
2661 y = add(xs[0], xs[1])
2662 for x in xs[2:]:
2663 y = add(y, x)
2664 return
2665
2666
2667class Abs(Operator):

Callers

nothing calls this directly

Calls 1

addFunction · 0.70

Tested by

no test coverage detected