(analyzer, op)
| 81 | |
| 82 | @Analyzer.register(OperatorDef) |
| 83 | def analyze_op(analyzer, op): |
| 84 | for x in op.input: |
| 85 | analyzer.need_blob(x) |
| 86 | for x in op.output: |
| 87 | analyzer.define_blob(x) |
| 88 | |
| 89 | |
| 90 | @Analyzer.register(Net) |
nothing calls this directly
no test coverage detected
searching dependent graphs…