Skip to content

Commit

Permalink
build.sh switch to use RAPIDS magic value (rapidsai#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: rapidsai#5124
  • Loading branch information
robertmaynard authored Jan 10, 2023
1 parent 3c40d01 commit b81170a
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 b81170a

Please sign in to comment.