Skip to content

Commit

Permalink
build cugraph with less parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 9, 2024
1 parent d0ddf2d commit 80ed3b6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-rapids.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,8 @@ jobs:
if test "${lib}" != "cugraph"; then
args=(-v -j "${args[@]}");
else
# cuGraph device objects use lots of memory, so tell the scaler to
# take that into account when calculating -j/-t
args=(-v -j --max-device-obj-memory-usage 5 "${args[@]}");
# cuGraph device objects use lots of memory, so only build with -t=1
args=(-v -j$(nproc --ignore=1) --archs 1 "${args[@]}");
fi
sccache -z;
Expand Down

0 comments on commit 80ed3b6

Please sign in to comment.