(attr_name, op_def)
| 136 | |
| 137 | |
| 138 | def _FindAttrInOpDef(attr_name, op_def): |
| 139 | for attr_def in op_def.attr: |
| 140 | if attr_name == attr_def.name: |
| 141 | return attr_def |
| 142 | return None |
| 143 | |
| 144 | |
| 145 | def _RemoveDefaultAttrs(op_dict, producer_op_list, graph_def): |
no outgoing calls
no test coverage detected