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 |
vyasr
left a comment
There was a problem hiding this comment.
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.