Get all the variables by the input name.
(self, name)
| 54 | return self._op.type |
| 55 | |
| 56 | def inputs(self, name): |
| 57 | """ |
| 58 | Get all the variables by the input name. |
| 59 | """ |
| 60 | if name in self._op.input_names: |
| 61 | return [ |
| 62 | self._graph.var(var_name) for var_name in self._op.input(name) |
| 63 | ] |
| 64 | else: |
| 65 | return [] |
| 66 | |
| 67 | def outputs(self, name): |
| 68 | """ |
no test coverage detected