| 35 | /*! \brief Structure to encapsulate dense vector data to clSPARSE API |
| 36 | */ |
| 37 | typedef struct cldenseVector_ |
| 38 | { |
| 39 | clsparseIdx_t num_values; /*!< Length of dense vector */ |
| 40 | |
| 41 | void* values; /**< OpenCL 2.0 memory pointer */ |
| 42 | } cldenseVector; |
| 43 | |
| 44 | /*! \brief Structure to encapsulate sparse matrix data encoded in CSR |
| 45 | * form to clSPARSE API |
nothing calls this directly
no outgoing calls
no test coverage detected