Return the node outputs. Returns: list(IrOpNode): node outputs wrapped by IrOpNode.
(self)
| 5409 | |
| 5410 | @property |
| 5411 | def outputs(self): |
| 5412 | """ |
| 5413 | Return the node outputs. |
| 5414 | |
| 5415 | Returns: |
| 5416 | list(IrOpNode): node outputs wrapped by IrOpNode. |
| 5417 | """ |
| 5418 | return [IrOpNode(n) for n in self.node.outputs] |
| 5419 | |
| 5420 | |
| 5421 | class IrOpNode(IrNode): |