Skip to content

Commit

Permalink
TST: Try forcing gpus=0 in benchmark test subprocess call
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Berg <[email protected]>
  • Loading branch information
seberg committed Nov 12, 2024
1 parent cb663ec commit 8c78e0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion legateboost/test/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def test_benchmark(benchmark_dir):
del env["LEGATE_CONFIG"]

subprocess.run(
"legate --cpus 2 legateboost_scaling.py --nrows 100 --ncols 5 --niter 2"
"legate --cpus=2 --gpus=0"
+ " legateboost_scaling.py --nrows 100 --ncols 5 --niter 2"
+ " --model_types tree,linear,krr,nn",
shell=True,
check=True,
Expand Down

0 comments on commit 8c78e0c

Please sign in to comment.