Return the list of unique tensors or ops needed by this fetch mapper. Returns: A list of tensors or ops.
(self)
| 228 | """ |
| 229 | |
| 230 | def unique_fetches(self): |
| 231 | """Return the list of unique tensors or ops needed by this fetch mapper. |
| 232 | |
| 233 | Returns: |
| 234 | A list of tensors or ops. |
| 235 | """ |
| 236 | raise NotImplementedError('Must be implemented by subclasses') |
| 237 | |
| 238 | def build_results(self, values): |
| 239 | """Build results that match the original shape of the fetch. |
no outgoing calls
no test coverage detected