提交 2f01f19d authored 作者: sentient07's avatar sentient07

Fixed concatenation error

上级 b1b05e86
...@@ -335,7 +335,7 @@ class GraphToGPU(NavigatorOptimizer): ...@@ -335,7 +335,7 @@ class GraphToGPU(NavigatorOptimizer):
for c, _ in node.outputs[0].clients: for c, _ in node.outputs[0].clients:
if (c != 'output' and if (c != 'output' and
(self.local_optimizers_map.get(c.op, []) + (self.local_optimizers_map.get(c.op, []) +
self.local_optimizers_map.get(type(c.op)))): self.local_optimizers_map.get(type(c.op), []))):
move_to_GPU = True move_to_GPU = True
new_ops = None new_ops = None
outputs = [] outputs = []
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论