| 227 | } |
| 228 | |
| 229 | std::vector<Value<TensorT>*> FindInputs(NodeId id) const final { |
| 230 | if (id >= nodes_.size()) { |
| 231 | return {}; |
| 232 | } |
| 233 | return nodes_[id].inputs; |
| 234 | } |
| 235 | |
| 236 | std::vector<Value<TensorT>*> FindOutputs(NodeId id) const final { |
| 237 | if (id >= nodes_.size()) { |