示例#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)