Get all the variables by the output name.
(self, name)
| 65 | return [] |
| 66 | |
| 67 | def outputs(self, name): |
| 68 | """ |
| 69 | Get all the variables by the output name. |
| 70 | """ |
| 71 | return [self._graph.var(var_name) for var_name in self._op.output(name)] |
| 72 | |
| 73 | |
| 74 | class GraphWrapper: |
no test coverage detected