Skip to content

Commit

Permalink
tvmc_utils: disable print_top by default 2
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Apr 11, 2024
1 parent 844020c commit 9a23c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlonmcu/platform/tvm/tvm_target_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ def create_target(self, name):
base = Target
return create_tvm_platform_target(name, self, base=base)

def get_tvmc_run_args(self, ins_file=None, outs_file=None):
def get_tvmc_run_args(self, ins_file=None, outs_file=None, print_top=None):
return [
*get_data_tvmc_args(
mode=self.fill_mode, ins_file=ins_file, outs_file=outs_file, print_top=self.print_top
mode=self.fill_mode, ins_file=ins_file, outs_file=outs_file, print_top=print_top
),
*get_bench_tvmc_args(
print_time=True, profile=self.profile, end_to_end=False, repeat=self.repeat, number=self.number
Expand Down

0 comments on commit 9a23c7f

Please sign in to comment.