Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Morris committed Jun 24, 2020
1 parent f432e21 commit 332b27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/backend/contrib/tidl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@ def enable(self, mod_orig, params, input):
mod = transform.MergeCompilerRegions()(mod)
mod = transform.PartitionGraph()(mod)
mod = PruneSubgraphsWithMoreThanOneInput(mod, compiler=self.tidl_target)
mod = ReduceSubgraphSize(mod, max_num_layers=max_num_layers, max_total_memory_mb=max_total_memory_mb, compiler=self.tidl_target)
mod = ReduceSubgraphSize(mod, max_num_layers=self.max_num_layers, max_total_memory_mb=self.max_total_memory_mb, compiler=self.tidl_target)
mod = UnpackComposites(mod, compiler=self.tidl_target)
mod = PruneSubgraphs(mod, compiler=self.tidl_target, num_subgraphs_to_keep=self.num_tidl_subgraphs)

Expand Down

0 comments on commit 332b27c

Please sign in to comment.