Stores debug information associated with the Node.
| 413 | |
| 414 | // Stores debug information associated with the Node. |
| 415 | struct NodeDebugInfo { |
| 416 | const string name; |
| 417 | std::vector<string> original_node_names; |
| 418 | |
| 419 | NodeDebugInfo(const Node& n); |
| 420 | NodeDebugInfo(const NodeDef& ndef); |
| 421 | NodeDebugInfo(StringPiece node_name, bool has_experimental_debug_info, |
| 422 | const NodeDef_ExperimentalDebugInfo& experimental_debug_info); |
| 423 | }; |
| 424 | |
| 425 | // Represents an input of a node, i.e., the `index`-th input to `node`. |
| 426 | struct InputTensor { |
no outgoing calls