| 44 | } |
| 45 | |
| 46 | Status ValidateGraphDefAgainstOpRegistry( |
| 47 | const GraphDef& graph_def, const OpRegistryInterface& op_registry) { |
| 48 | GraphDef copy(graph_def); |
| 49 | TF_RETURN_IF_ERROR(AddDefaultAttrsToGraphDef(©, op_registry, 0)); |
| 50 | return ValidateGraphDef(copy, op_registry); |
| 51 | } |
| 52 | |
| 53 | Status ValidateGraphDefAgainstOpList(const GraphDef& graph_def, |
| 54 | const OpList& op_list) { |
no test coverage detected