Return a list of all node names in aggregation sorted sorter.
(self)
| 575 | return self.flattened |
| 576 | |
| 577 | def flatten(self): |
| 578 | """Return a list of all node names in aggregation sorted sorter.""" |
| 579 | return [_tensor_name_base(x.name) for x in self.flatten_nodes()] |
| 580 | |
| 581 | def aggregate_and_return_name_for_input(self, out_graphdef): |
| 582 | """This adds the nodes to out_graphdef and returns an aggregated output. |
nothing calls this directly
no test coverage detected