Skip to content

Commit

Permalink
Use tvm.transform.Sequential
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Morris committed Apr 15, 2020
1 parent 148cacb commit 569dc57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/relay/test_pass_partition_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ def expected():
mod = tvm.IRModule()
mod["main"] = create_graph()

seq = transform.Sequential([
seq = tvm.transform.Sequential([
transform.AnnotateTarget(target),
transform.MergeCompilerRegions(),
transform.PartitionGraph(),
Expand Down Expand Up @@ -1160,7 +1160,7 @@ def expected():
mod = tvm.IRModule()
mod["main"] = create_graph()

seq = transform.Sequential([
seq = tvm.transform.Sequential([
transform.AnnotateTarget(target),
transform.MergeCompilerRegions(),
transform.PartitionGraph(),
Expand Down

0 comments on commit 569dc57

Please sign in to comment.