提交 c6de24be authored 作者: Pierre Luc Carrier's avatar Pierre Luc Carrier

Remove unused parameter in inner_connection_pattern()

上级 1040e20b
...@@ -1330,7 +1330,7 @@ class Scan(PureOp): ...@@ -1330,7 +1330,7 @@ class Scan(PureOp):
ipos += len(otaps) ipos += len(otaps)
return ipos + opos return ipos + opos
def inner_connection_pattern(self, node): def inner_connection_pattern(self):
""" Returns the connection pattern of scan's inner function """ Returns the connection pattern of scan's inner function
""" """
...@@ -1439,7 +1439,7 @@ class Scan(PureOp): ...@@ -1439,7 +1439,7 @@ class Scan(PureOp):
return inner_iidxs return inner_iidxs
# Obtain the connection pattern of the inner function. # Obtain the connection pattern of the inner function.
inner_connect_pattern = self.inner_connection_pattern(node) inner_connect_pattern = self.inner_connection_pattern()
# Initially assume no outer input is connected to any outer output # Initially assume no outer input is connected to any outer output
connection_pattern = [[False for output in node.outputs] connection_pattern = [[False for output in node.outputs]
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论