Skip to content

Commit 2f5ce9d

Browse files
authored
Fix CPU PDS* runs (rapidsai#21899)
PR adds a simple fix for running in cpu mode for pds* execution: ``` python -m cudf_polars.experimental.benchmarks.pdsds \ --scale "$SCALE" \ --path "$DATA" \ --suffix "" \ --executor cpu \ --iterations 2 \ --explain \ --no-print-results \ -o "$OUTPUT" \ "$QUERIES" \ 2>&1 | tee "$LOG" ``` cc @Matt711 Authors: - Benjamin Zaitlen (https://github.com/quasiben) Approvers: - Matthew Murray (https://github.com/Matt711) URL: rapidsai#21899
1 parent 58d7007 commit 2f5ce9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • python/cudf_polars/cudf_polars/experimental/benchmarks

python/cudf_polars/cudf_polars/experimental/benchmarks/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,7 @@ def run_polars(
17601760
date_type,
17611761
validation_files,
17621762
)
1763-
case "single" | "distributed":
1763+
case "single" | "distributed" | None:
17641764
run_polars_single_or_dask(
17651765
benchmark,
17661766
args,

0 commit comments

Comments
 (0)