-
Notifications
You must be signed in to change notification settings - Fork 541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update setup.py #4015
Update setup.py #4015
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #4015 +/- ##
===============================================
Coverage ? 85.46%
===============================================
Files ? 230
Lines ? 18116
Branches ? 0
===============================================
Hits ? 15482
Misses ? 2634
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
@gpucibot merge |
…etting UCX install location (#1698) This PR is a continuation of #1694. Similar to rapidsai/cuml#4015, this PR updates setup.py to: * Use `library_dirs` instead of `runtime_library_dirs` when linking Cython. * Allow overriding UCX lib and include dirs via a `UCX_HOME` envvar. * Link `cudart`, `cusparse`, and `cusolver`. These are necessary to compile the Cython via `pip` when not inside a conda environment and when UCX is installed to a location other than `/usr` or `/usr/local`. Authors: - Paul Taylor (https://github.com/trxcllnt) Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: #1698
This PR includes some changes that were necessary to build `cuml` via CMake. Namely it includes the following changes: - Updates the `libs` list to include some additionally libraries to link against - Moves the `runtime_library_dirs` to `library_dirs` cc: @trxcllnt, who helped me get `cuml` built via CMake Authors: - AJ Schmidt (https://github.com/ajschmidt8) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4015
This PR includes some changes that were necessary to build
cuml
via CMake. Namely it includes the following changes:libs
list to include some additionally libraries to link againstruntime_library_dirs
tolibrary_dirs
cc: @trxcllnt, who helped me get
cuml
built via CMake