Rename the `old_name` to `new_name`. Args: old_name(str): The old name of the Operator's input. new_name(str): The new name of the Operator's input. Returns: None
(self, old_name, new_name)
| 3745 | return self.desc.input(name) |
| 3746 | |
| 3747 | def _rename_input(self, old_name, new_name): |
| 3748 | """ |
| 3749 | Rename the `old_name` to `new_name`. |
| 3750 | |
| 3751 | Args: |
| 3752 | old_name(str): The old name of the Operator's input. |
| 3753 | new_name(str): The new name of the Operator's input. |
| 3754 | |
| 3755 | Returns: |
| 3756 | None |
| 3757 | """ |
| 3758 | self.desc._rename_input(old_name, new_name) |
| 3759 | |
| 3760 | def _rename_output(self, old_name, new_name): |
| 3761 | """ |
no outgoing calls