Skip to content

Commit

Permalink
Edit location of data generation
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 16, 2024
1 parent fd66483 commit 54428e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/ci-scripts/job_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def submit_job(
env_vars: str,
enable_ray_tracing: bool,
):
datadir = Path(__file__).parents[2] / "benchmarking" / "tpcds" / "gendata"
datadir = Path(__file__).parents[2] / "gendata"
datadir.mkdir(parents=True, exist_ok=True)
scale_factor = 0.01
db = duckdb.connect(database=datadir / "tpcds.db")
Expand Down
3 changes: 1 addition & 2 deletions benchmarking/tpcds/ray_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ def run(
)
args = parser.parse_args()

d = Path("benchmarking") / "tpcds"
d = Path(".")
assert d.exists()

for x in d.iterdir():
print(f"subpath: {x}")

Expand Down

0 comments on commit 54428e3

Please sign in to comment.