Skip to content

Commit 7340e36

Browse files
authored
chore: consolidate runner codes in bench_runner directory (#3)
Signed-off-by: Takumi Yanagawa <yana@jp.ibm.com>
1 parent 40f3b37 commit 7340e36

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

itbench_tools/bench_runner/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import logging
1717

1818
import itbench_tools.agent_harness.agent
19-
import itbench_tools.app.runner
19+
import itbench_tools.bench_runner.runner
2020
from itbench_tools.app.config import (
2121
DEFAULT_MINIBENCH_HOST,
2222
DEFAULT_MINIBENCH_PORT,
@@ -75,7 +75,7 @@ def main():
7575
log.init()
7676

7777
if args.command == 'runner':
78-
itbench_tools.app.runner.run(args)
78+
itbench_tools.bench_runner.runner.run(args)
7979

8080

8181
if __name__ == "__main__":

itbench_tools/app/runner.py renamed to itbench_tools/bench_runner/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
BenchmarkJobTake,
3131
)
3232
from itbench_tools.app.models.bundle import Bundle as BundleInApp
33-
from itbench_tools.app.runner_utils import (
33+
from itbench_tools.bench_runner.utils import (
3434
build_benchmark_run_config,
3535
get_specific_log_file_path,
3636
setup_request_logger,
File renamed without changes.

0 commit comments

Comments
 (0)