Return the node outputs. Returns: list(IrNode): node outputs wrapped by IrNode.
(self)
| 5310 | |
| 5311 | @property |
| 5312 | def outputs(self): |
| 5313 | """ |
| 5314 | Return the node outputs. |
| 5315 | |
| 5316 | Returns: |
| 5317 | list(IrNode): node outputs wrapped by IrNode. |
| 5318 | """ |
| 5319 | return [IrNode(n) for n in self.node.outputs] |
| 5320 | |
| 5321 | |
| 5322 | class IrVarNode(IrNode): |