Skip to content
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

[FEA] Support for half-float mixed precise in brute-force #2382

Merged
merged 20 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try to fix sddmm error in conda-cpp-tests
  • Loading branch information
rhdong committed Jul 18, 2024
commit eb3b8a6bdac021adf7fd18284a5eea05e195971c
21 changes: 0 additions & 21 deletions cpp/include/raft/sparse/detail/cusparse_wrappers.h
Original file line number Diff line number Diff line change
Expand Up @@ -269,27 +269,6 @@ inline cusparseStatus_t cusparsecreatecsr(cusparseSpMatDescr_t* spMatDescr,
CUSPARSE_INDEX_BASE_ZERO,
CUDA_R_64F);
}
template <>
inline cusparseStatus_t cusparsecreatecsr(cusparseSpMatDescr_t* spMatDescr,
int64_t rows,
int64_t cols,
int64_t nnz,
int64_t* csrRowOffsets,
int64_t* csrColInd,
half* csrValues)
{
return cusparseCreateCsr(spMatDescr,
rows,
cols,
nnz,
csrRowOffsets,
csrColInd,
csrValues,
CUSPARSE_INDEX_64I,
CUSPARSE_INDEX_64I,
CUSPARSE_INDEX_BASE_ZERO,
CUDA_R_16F);
}
/** @} */
/**
* @defgroup cusparse CreateDnVec operations
Expand Down
Loading