You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/12/08 04:29:54 UTC

[GitHub] [tvm] masahi commented on a diff in pull request #13514: [microTVM] tuning on micro targets with meta-schedule

masahi commented on code in PR #13514:
URL: https://github.com/apache/tvm/pull/13514#discussion_r1042911837


##########
src/meta_schedule/schedule_rule/schedule_rule.cc:
##########
@@ -251,6 +251,33 @@ Array<ScheduleRule> ScheduleRule::DefaultHexagon() {
   };
 }
 
+Array<ScheduleRule> ScheduleRule::DefaultMicro() {
+  return {
+      ScheduleRule::AutoInline(
+          /*into_producer=*/false,
+          /*into_consumer=*/true,
+          /*inline_const_tensor=*/true,
+          /*disallow_if_then_else=*/true,
+          /*require_injective=*/true,
+          /*require_ordered=*/true,
+          /*disallow_op=*/Array<String>{"tir.exp"}),
+      ScheduleRule::MultiLevelTilingWideVector(
+          /*structure=*/"SRSRS",
+          /*vector_length_in_bits=*/1024,

Review Comment:
   You probably copied this from Hexagon, but the normal `ScheduleRule::MultiLevelTiling` is probably what you want.



-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org