-
Notifications
You must be signed in to change notification settings - Fork 540
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
Moving cusparse wrappers to detail API in RAFT. #4547
Moving cusparse wrappers to detail API in RAFT. #4547
Conversation
rerun tests |
2 similar comments
rerun tests |
rerun tests |
cpp/cmake/thirdparty/get_raft.cmake
Outdated
@@ -57,8 +57,8 @@ set(CUML_BRANCH_VERSION_raft "${CUML_VERSION_MAJOR}.${CUML_VERSION_MINOR}") | |||
# To use a different RAFT locally, set the CMake variable | |||
# CPM_raft_SOURCE=/path/to/local/raft | |||
find_and_configure_raft(VERSION ${CUML_MIN_VERSION_raft} | |||
FORK rapidsai | |||
PINNED_TAG branch-${CUML_BRANCH_VERSION_raft} | |||
FORK cjnolet |
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.
reminder to change this back before merging
cpp/src/glm/qn/simple_mat/sparse.hpp
Outdated
@@ -25,10 +25,13 @@ | |||
#include <raft/handle.hpp> | |||
#include <raft/linalg/binary_op.cuh> | |||
#include <raft/linalg/cublas_wrappers.h> | |||
|
|||
// TODO: Need to wrap the cusparse functions in the RAFT public API |
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.
Is there a RAFT issue to track it?
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.
There is: rapidsai/raft#475
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #4547 +/- ##
===============================================
Coverage ? 85.70%
===============================================
Files ? 236
Lines ? 19363
Branches ? 0
===============================================
Hits ? 16596
Misses ? 2767
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
This will require a follow-on to expose corresponding functions through the RAFT public API, but that's also the case for some cublas/cusolver calls currently so we'll scrape through and do that all at once Authors: - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4547
This will require a follow-on to expose corresponding functions through the RAFT public API, but that's also the case for some cublas/cusolver calls currently so we'll scrape through and do that all at once