Return the node inputs. Returns: list(IrOpNode): node inputs wrapped by IrOpNode.
(self)
| 5399 | |
| 5400 | @property |
| 5401 | def inputs(self): |
| 5402 | """ |
| 5403 | Return the node inputs. |
| 5404 | |
| 5405 | Returns: |
| 5406 | list(IrOpNode): node inputs wrapped by IrOpNode. |
| 5407 | """ |
| 5408 | return [IrOpNode(n) for n in self.node.inputs] |
| 5409 | |
| 5410 | @property |
| 5411 | def outputs(self): |