Skip to content

Commit

Permalink
build.sh switch to use RAPIDS magic value (#5124)
Browse files Browse the repository at this point in the history
rapids-cmake 23.02 is deprecating the magic value of `ALL` since it doesn't cleanly map to the cmake magic value of `all`. Instead we use `RAPIDS` which better represents the architectures we are building for.

Authors:
  - Robert Maynard (https://github.com/robertmaynard)

Approvers:
  - Dante Gama Dessavre (https://github.com/dantegd)

URL: #5124
  • Loading branch information
robertmaynard authored Jan 10, 2023
1 parent 199c7d4 commit 1cadcda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ if completeBuild || hasArg libcuml || hasArg prims || hasArg bench || hasArg pri
CUML_CMAKE_CUDA_ARCHITECTURES="NATIVE"
echo "Building for the architecture of the GPU in the system..."
else
CUML_CMAKE_CUDA_ARCHITECTURES="ALL"
CUML_CMAKE_CUDA_ARCHITECTURES="RAPIDS"
echo "Building for *ALL* supported GPU architectures..."
fi

Expand Down

0 comments on commit 1cadcda

Please sign in to comment.