예제 #1
0
파일: common.py 프로젝트: yyaqi/Dragon
 def LayerSetup(self, bottom):
     return _ops.Add(bottom, **self.arguments)
예제 #2
0
def add(x, y, name=None):

    return ops.Add([x, y], name=None)
예제 #3
0
 def Setup(self, bottom):
     super(AddLayer, self).Setup(bottom)
     return ops.Add(bottom, **self._param)