Get the variable by variable name.
(self, name)
| 113 | return ops |
| 114 | |
| 115 | def var(self, name): |
| 116 | """ |
| 117 | Get the variable by variable name. |
| 118 | """ |
| 119 | for block in self.program.blocks: |
| 120 | if block.has_var(name): |
| 121 | return VarWrapper(block.var(name), self) |
| 122 | return None |
| 123 | |
| 124 | |
| 125 | def count_convNd(op): |
no test coverage detected