-
Notifications
You must be signed in to change notification settings - Fork 919
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
FindcuFile now searches in the current CUDA Toolkit location #11101
FindcuFile now searches in the current CUDA Toolkit location #11101
Conversation
We shouldn't presume that the CUDA Toolkit is always installed at /usr/local/cuda. Instead we use use `find_package(CUDAToolkit)` to find the correct location. In addition since `cufile::cuFile_interface` is part of our public interface we also install the `FindcuFile.cmake` file.
Were there meant to be changes aside from adding the search hints in this PR? |
This is a bad commit message. I previously had more export logic but realized it wasn't needed as it was already part of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs reformatting, but otherwise LGTM.
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-22.08 #11101 +/- ##
===============================================
Coverage ? 86.34%
===============================================
Files ? 144
Lines ? 22738
Branches ? 0
===============================================
Hits ? 19632
Misses ? 3106
Partials ? 0 Continue to review full report at Codecov.
|
rerun tests |
@gpucibot merge |
We shouldn't presume that the CUDA Toolkit is always installed at /usr/local/cuda. Instead we use use
find_package(CUDAToolkit)
to find the correct location.