Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 16, 2024
1 parent a744cf2 commit 96ec531
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions benchmarking/tpcds/ray_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,7 @@ def run(
)
args = parser.parse_args()

d = Path(".")
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.tpcds_gen_folder.exists()
assert args.question in range(1, 100)

run(args.tpcds_gen_folder, args.question, args.dry_run)

0 comments on commit 96ec531

Please sign in to comment.