tkonolige commented on code in PR #11479:
URL: https://github.com/apache/tvm/pull/11479#discussion_r887296132
##########
python/tvm/testing/autotvm.py:
##########
@@ -62,9 +62,12 @@ def matmul(N, L, M, dtype):
# schedule according to config
yo, yi = cfg["tile_y"].apply(s, C, y)
- xo, xi = cfg["tile_x"].apply(s, C, x)
+ if cfg["tile_x"].size[-1] > 1:
+ xo, xi = cfg["tile_x"].apply(s, C, x)
Review Comment:
Yeah, this is to hit the failing test case. It will conditionally split one
of the loops so that some configurations have n itervars and some have n+1.
--
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]