You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few deprecated APIs have been removed from the cusparse wrappers, such as gemmi, gathr, and csrgemm2.
The cusparse_wrappers were intentionally moved to the detail API but haven't been fully replaced w/ a public API facade yet so there are places in both RAFT and cuml which are still referencing these wrappers directly. This should make it easier to fix this change, though, because we might be able to back the implementations of the wrapped functions w/ the non-deprecated versions in the meantime (e.g. gemmi->spmm, etc...), migrate everything over to the new function names, then eventually remove the old functions from RAFT altogether.
A few deprecated APIs have been removed from the cusparse wrappers, such as
gemmi
,gathr
, andcsrgemm2
.The cusparse_wrappers were intentionally moved to the
detail
API but haven't been fully replaced w/ a public API facade yet so there are places in both RAFT and cuml which are still referencing these wrappers directly. This should make it easier to fix this change, though, because we might be able to back the implementations of the wrapped functions w/ the non-deprecated versions in the meantime (e.g. gemmi->spmm, etc...), migrate everything over to the new function names, then eventually remove the old functions from RAFT altogether.cc @robertmaynard
The text was updated successfully, but these errors were encountered: