| 203 | } |
| 204 | |
| 205 | static const GraphTransferNodeInfo* FindNodeInfo(const GraphTransferer& gt, |
| 206 | const string& name) { |
| 207 | for (const GraphTransferNodeInfo& params : |
| 208 | gt.GetGraphTransferInfo().node_info()) { |
| 209 | if (params.name() == name) { |
| 210 | return ¶ms; |
| 211 | } |
| 212 | } |
| 213 | return nullptr; |
| 214 | } |
| 215 | |
| 216 | static const GraphTransferNodeInputInfo* FindNodeInputInfo( |
| 217 | const GraphTransferer& gt, const int node_id) { |
no test coverage detected