Runs the operator and returns the result. :param input: The input tensor to run the operator on. :returns: The result from the operator's run.
(self, input)
| 102 | |
| 103 | @abstractmethod |
| 104 | def run(self, input): |
| 105 | """ |
| 106 | Runs the operator and returns the result. |
| 107 | :param input: The input tensor to run the operator on. |
| 108 | :returns: The result from the operator's run. |
| 109 | """ |
| 110 | pass |
| 111 | |
| 112 | def get_params_info(self, primitive_types_only=True): |
| 113 | """ |