Return a list of tensor names (guaranteed not op name) this inferencer needs.
(self)
| 59 | pass |
| 60 | |
| 61 | def get_fetches(self): |
| 62 | """ |
| 63 | Return a list of tensor names (guaranteed not op name) this inferencer needs. |
| 64 | """ |
| 65 | ret = self._get_fetches() |
| 66 | return [get_op_tensor_name(n)[1] for n in ret] |
| 67 | |
| 68 | def _get_fetches(self): |
| 69 | """ |
no test coverage detected