def LayerSetup(self, bottom): return _ops.Add(bottom, **self.arguments)
def add(x, y, name=None): return ops.Add([x, y], name=None)
def Setup(self, bottom): super(AddLayer, self).Setup(bottom) return ops.Add(bottom, **self._param)