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
How to run SpMM with half precision? I see that Sputnik only provides an interface for half2. If I have a CSR matrix with val in half precision, do I need to preprocess it? Also, why is the type of column idx is short2? If the matrix is very large, won't it be impossible to store the column indices?
cudaError_t CudaSpmm(int m, int k, int n, int nonzeros,
constint* __restrict__ row_indices,
const half2* __restrict__ values,
constint* __restrict__ row_offsets,
const short2* __restrict__ column_indices,
const half2* __restrict__ dense_matrix,
half2* __restrict__ output_matrix, cudaStream_t stream)
Any response would be helpful, thank you.
The text was updated successfully, but these errors were encountered:
How to run SpMM with half precision? I see that Sputnik only provides an interface for
half2
. If I have a CSR matrix withval
inhalf
precision, do I need to preprocess it? Also, why is the type ofcolumn idx
isshort2
? If the matrix is very large, won't it be impossible to store the column indices?Any response would be helpful, thank you.
The text was updated successfully, but these errors were encountered: