| 142 | } |
| 143 | |
| 144 | bool HasMainOp(const MetaGraphDef& meta_graph_def) { |
| 145 | const auto& collection_def_map = meta_graph_def.collection_def(); |
| 146 | return collection_def_map.find(kSavedModelMainOpKey) != |
| 147 | collection_def_map.end(); |
| 148 | } |
| 149 | |
| 150 | Status RunIncrRestoreCheckpoint( |
| 151 | const RunOptions& run_options, |
no test coverage detected