Rename the output of this node. Args: old_output_name(str): the old output name. new_output_name(str): the new output name.
(self, old_output_name, new_output_name)
| 5450 | self.node.op()._rename_input(old_input_name, new_input_name) |
| 5451 | |
| 5452 | def rename_output(self, old_output_name, new_output_name): |
| 5453 | """ |
| 5454 | Rename the output of this node. |
| 5455 | |
| 5456 | Args: |
| 5457 | old_output_name(str): the old output name. |
| 5458 | new_output_name(str): the new output name. |
| 5459 | """ |
| 5460 | assert self.node.op() is not None, ( |
| 5461 | "The node operator description can not be None." |
| 5462 | ) |
| 5463 | self.node.op()._rename_output(old_output_name, new_output_name) |
| 5464 | |
| 5465 | def input(self, name): |
| 5466 | """ |
no test coverage detected