vvchernov commented on code in PR #11358:
URL: https://github.com/apache/tvm/pull/11358#discussion_r967121778
##########
python/tvm/runtime/vm.py:
##########
@@ -550,6 +551,24 @@ def invoke_stateful(self, func_name, *args, **kwargs):
self.set_input(func_name, *args, **kwargs)
self._invoke_stateful(func_name)
+ def invoke_with_outputs(self, func_name, *args):
Review Comment:
I can do it in the following way: invoke_with_outputs(self, func_name,
*args, **kwargs), where args are output and kwargs are input tensors
correspondingly. It is complicated task to split input and output tensors from
args. Is this scenario good?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]