Skip to content

Commit

Permalink
Add default scale-factor size
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 17, 2024
1 parent 54e2269 commit 8ed2077
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmarking/tpcds/ray_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def run(
parser = argparse.ArgumentParser()
parser.add_argument(
"--question",
required=True,
type=int,
help="The TPC-DS question index to run",
required=True,
)
parser.add_argument(
"--dry-run",
Expand All @@ -75,6 +75,8 @@ def run(
"--scale-factor",
type=int,
help="Which scale factor to run this data at",
required=False,
default=2,
)
args = parser.parse_args()

Expand Down

0 comments on commit 8ed2077

Please sign in to comment.