Represents the output of 'node' at 'index'.
| 24 | |
| 25 | // Represents the output of 'node' at 'index'. |
| 26 | struct NodeOut { |
| 27 | Node* node; |
| 28 | int index; |
| 29 | |
| 30 | // Returns the string name that represents the output of this node. |
| 31 | string name() const; |
| 32 | // Returns the data type of the output of this node. |
| 33 | DataType dtype() const; |
| 34 | }; |
| 35 | |
| 36 | // NOTE: This API is a work in progress and will likely be changing frequently. |
| 37 | // |
no outgoing calls