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

Blocked-Ellpack format convertor #1

Open
neoblizz opened this issue May 14, 2021 · 1 comment
Open

Blocked-Ellpack format convertor #1

neoblizz opened this issue May 14, 2021 · 1 comment
Labels
wontfix This will not be worked on

Comments

@neoblizz
Copy link
Member Author

cusparseStatus_t
cusparseCreateBlockedEll(cusparseSpMatDescr_t* spMatDescr,
                         int64_t               rows,
                         int64_t               cols,
                         int64_t               ellBlockSize,
                         int64_t               ellCols,
                         void*                 ellColInd,
                         void*                 ellValue,
                         cusparseIndexType_t   ellIdxType,
                         cusparseIndexBase_t   idxBase,
                         cudaDataType          valueType)

This function initializes the sparse matrix descriptor spMatDescr for the Blocked-Ellpack (ELL) format.

Param. Memory In/out Meaning
spMatDescr HOST OUT Sparse matrix descriptor
rows HOST IN Number of rows of the sparse matrix
cols HOST IN Number of columns of the sparse matrix
ellBlockSize HOST IN Size of the ELL-Block
ellCols HOST IN Actual number of columns of the Blocked-Ellpack format
ellColInd DEVICE IN Blocked-ELL Column indices. Array of size [ellCols / ellBlockSize][rows / ellBlockSize]
ellValue DEVICE IN Values of the sparse martix. Array of size rows * ellCols
ellIdxType HOST IN Data type of ellColInd
idxBase HOST IN Base index of ellColInd
valueType HOST IN Datatype of ellValue

@neoblizz neoblizz changed the title Blocked-Ellpack format Blocked-Ellpack format convertor May 15, 2021
@neoblizz neoblizz added the wontfix This will not be worked on label May 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

3 participants