(op)
| 157 | functions_to_process = [] # A subset of used_ops |
| 158 | |
| 159 | def mark_op_as_used(op): |
| 160 | if op not in used_ops and op in name_to_function: |
| 161 | functions_to_process.append(name_to_function[op]) |
| 162 | used_ops.add(op) |
| 163 | |
| 164 | for node in graph_def.node: |
| 165 | mark_op_as_used(node.op) |
no test coverage detected