slyubomirsky commented on code in PR #15916:
URL: https://github.com/apache/tvm/pull/15916#discussion_r1372276835
##########
python/tvm/relax/op/base.py:
##########
@@ -97,7 +97,11 @@ def call_tir(
ret: Call
A call node for the call_tir operator.
"""
- if isinstance(args, Expr) and not isinstance(args, RxTuple): # type:
ignore
+ if (
+ isinstance(args, Expr)
+ and not isinstance(args, RxTuple)
+ and not isinstance(args.struct_info_, TupleStructInfo)
Review Comment:
You should do this for the other call_tir variants in this file too.
--
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]