Lunderberg commented on issue #17176:
URL: https://github.com/apache/tvm/issues/17176#issuecomment-2260817965
@jpf888 This sounds like a similar bug, but would depend on how the dispatch
is implemented. When the pattern-matching is applied, is the call to the fused
kernel generated as `module.fused_function(args)`, or as
`R.call_extern("fused_function", args)`? The fix applied in #17202 would only
apply to calls that are known to be within the same IRModule (the
`module.fused_function(args)` version), and not to calls that may be defined
outside of the IRModule (the `R.call_extern` version).
--
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]