| 51 | } |
| 52 | |
| 53 | Status ValidateGraphDefAgainstOpList(const GraphDef& graph_def, |
| 54 | const OpList& op_list) { |
| 55 | OpListOpRegistry registry(&op_list); |
| 56 | return ValidateGraphDefAgainstOpRegistry(graph_def, registry); |
| 57 | } |
| 58 | |
| 59 | void GetOpListForValidation(OpList* op_list, const OpRegistry& op_registry) { |
| 60 | op_registry.Export(false, op_list); |