fzi-peccia commented on code in PR #18182:
URL: https://github.com/apache/tvm/pull/18182#discussion_r2281644042
##########
python/tvm/meta_schedule/tune_context.py:
##########
@@ -117,6 +117,14 @@ def __init__(
if target is not None:
if not isinstance(target, Target):
target = Target(target)
+ if "riscv_cpu" in target.keys:
+ base_features =
str(target.attrs["march"]).split("_")[0].replace("rv", "")
+ if "v" in base_features:
Review Comment:
Fixed in 918d22e6b5b031758edea180e76f1d0a23573f04
--
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]