Skip to content

Commit

Permalink
BUG #9216: Don't disable FuseOps pass since required by GraphExecutor (
Browse files Browse the repository at this point in the history
…#9227)

This tutorial disabled the FuseOps pass, but before #8788 that was
ignored since FuseOps was applied directly.
  • Loading branch information
mbs-octoml authored Oct 8, 2021
1 parent d12e725 commit 88b2be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/micro/micro_tflite.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
# Now, compile the model for the target:

with tvm.transform.PassContext(
opt_level=3, config={"tir.disable_vectorize": True}, disabled_pass=["FuseOps", "AlterOpLayout"]
opt_level=3, config={"tir.disable_vectorize": True}, disabled_pass=["AlterOpLayout"]
):
module = relay.build(mod, target=TARGET, params=params)

Expand Down

0 comments on commit 88b2be8

Please sign in to comment.