| 759 | } |
| 760 | |
| 761 | void RemoveDescriptionsFromOpList(OpList* op_list) { |
| 762 | for (int i = 0; i < op_list->op_size(); ++i) { |
| 763 | OpDef* op_def = op_list->mutable_op(i); |
| 764 | RemoveDescriptionsFromOpDef(op_def); |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | bool AttrDefEqual(const OpDef::AttrDef& a1, const OpDef::AttrDef& a2) { |
| 769 | #ifndef TENSORFLOW_LITE_PROTOS |
no test coverage detected