Skip to content

Commit

Permalink
update vnni intrin name
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Apr 7, 2022
1 parent 4814f82 commit 40f9742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta_schedule/schedule_rule/multi_level_tiling.cc
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class MultiLevelTilingNode : public ScheduleRuleNode {
inline std::vector<State> MultiLevelTilingNode::TileForVNNI(State state) const {
std::vector<State> result;
BlockRV block_rv = state.block_rv;
const std::string intrin_name = "dot_16x1x16_uint8_int8_int32_cascadelake";
const std::string intrin_name = "dot_16x4_vnni";
Optional<LoopRV> tiled_loop_rv = TilingwithTensorIntrin(state.sch, block_rv, intrin_name);
ICHECK(tiled_loop_rv.defined());
state.block_rv = state.sch->Blockize(tiled_loop_rv.value());
Expand Down

0 comments on commit 40f9742

Please sign in to comment.