From b5f5cb1b90feba04dfbf9d57db166d40bbc9105e Mon Sep 17 00:00:00 2001 From: Raunak Bhagat Date: Sun, 15 Dec 2024 15:52:45 -0800 Subject: [PATCH] Printout --- benchmarking/tpcds/ray_entrypoint.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/benchmarking/tpcds/ray_entrypoint.py b/benchmarking/tpcds/ray_entrypoint.py index 3787bab198..4e8b4ad5f2 100644 --- a/benchmarking/tpcds/ray_entrypoint.py +++ b/benchmarking/tpcds/ray_entrypoint.py @@ -42,12 +42,14 @@ def run( ) args = parser.parse_args() - tpcds_gen_folder: Path = args.tpcds_gen_folder - print(f"{tpcds_gen_folder=}") - this_dir = Path(".") - for x in this_dir.iterdir(): + d = Path("benchmarking") + assert d.exists() + + for x in d.iterdir(): print(f"subpath: {x}") + tpcds_gen_folder: Path = args.tpcds_gen_folder + print(f"{tpcds_gen_folder=}") assert tpcds_gen_folder.exists() assert args.question in range(1, 100)