Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
RyoYang committed Jul 15, 2024
1 parent fd5eebf commit a0ff2a6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions superbench/executor/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ def exec(self):
model,
platform=self.__get_platform(),
framework=Framework(framework.lower()),
parameters=self.__get_arguments({} if 'parameters' not in benchmark_config else benchmark_config.parameters)
parameters=self.__get_arguments(
{} if 'parameters' not in benchmark_config else benchmark_config.parameters
)
)
result = self.__exec_benchmark(full_name, context)
benchmark_results.append(result)
Expand All @@ -251,7 +253,9 @@ def exec(self):
benchmark_real_name,
platform=self.__get_platform(),
framework=Framework(framework.lower()),
parameters=self.__get_arguments({} if 'parameters' not in benchmark_config else benchmark_config.parameters)
parameters=self.__get_arguments(
{} if 'parameters' not in benchmark_config else benchmark_config.parameters
)
)
result = self.__exec_benchmark(full_name, context)
benchmark_results.append(result)
Expand Down

0 comments on commit a0ff2a6

Please sign in to comment.