Create a sparse array. More...
Functions | |
AFAPI array | sparse (const dim_t nRows, const dim_t nCols, const array values, const array rowIdx, const array colIdx, const af::storage stype=AF_STORAGE_CSR) |
This function converts af::array of values, row indices and column indices into a sparse array. More... | |
AFAPI array | sparse (const dim_t nRows, const dim_t nCols, const dim_t nNZ, const void *const values, const int *const rowIdx, const int *const colIdx, const dtype type=f32, const af::storage stype=AF_STORAGE_CSR, const af::source src=afHost) |
This function converts host or device arrays of values, row indices and column indices into a sparse array on the device. More... | |
AFAPI array | sparse (const array dense, const af::storage stype=AF_STORAGE_CSR) |
This function converts a dense af::array into a sparse array. More... | |
AFAPI af_err | af_create_sparse_array (af_array *out, const dim_t nRows, const dim_t nCols, const af_array values, const af_array rowIdx, const af_array colIdx, const af_storage stype) |
This function converts af::array of values, row indices and column indices into a sparse array. More... | |
AFAPI af_err | af_create_sparse_array_from_ptr (af_array *out, const dim_t nRows, const dim_t nCols, const dim_t nNZ, const void *const values, const int *const rowIdx, const int *const colIdx, const af_dtype type, const af_storage stype, const af_source src) |
This function converts host or device arrays of values, row indices and column indices into a sparse array on the device. More... | |
AFAPI af_err | af_create_sparse_array_from_dense (af_array *out, const af_array dense, const af_storage stype) |
This function converts a dense af_array into a sparse array. More... | |
Create a sparse array.
The sparse creation function has 3 different types of inputs it can accept.
AFAPI af_err af_create_sparse_array | ( | af_array * | out, |
const dim_t | nRows, | ||
const dim_t | nCols, | ||
const af_array | values, | ||
const af_array | rowIdx, | ||
const af_array | colIdx, | ||
const af_storage | stype | ||
) |
This function converts af::array of values, row indices and column indices into a sparse array.
[out] | out | af::array for the sparse array |
[in] | nRows | is the number of rows in the dense matrix |
[in] | nCols | is the number of columns in the dense matrix |
[in] | values | is the af_array containing the non-zero elements of the matrix |
[in] | rowIdx | is the row indices for the sparse array |
[in] | colIdx | is the column indices for the sparse array |
[in] | stype | is the storage format of the sparse array |
AFAPI af_err af_create_sparse_array_from_dense | ( | af_array * | out, |
const af_array | dense, | ||
const af_storage | stype | ||
) |
This function converts a dense af_array into a sparse array.
[out] | out | af_array for the sparse array with the given storage type |
[in] | dense | is the source dense matrix |
[in] | stype | is the storage format of the sparse array |
AFAPI af_err af_create_sparse_array_from_ptr | ( | af_array * | out, |
const dim_t | nRows, | ||
const dim_t | nCols, | ||
const dim_t | nNZ, | ||
const void *const | values, | ||
const int *const | rowIdx, | ||
const int *const | colIdx, | ||
const af_dtype | type, | ||
const af_storage | stype, | ||
const af_source | src | ||
) |
This function converts host or device arrays of values, row indices and column indices into a sparse array on the device.
[out] | out | af::array for the sparse array |
[in] | nRows | is the number of rows in the dense matrix |
[in] | nCols | is the number of columns in the dense matrix |
[in] | nNZ | is the number of non zero elements in the dense matrix |
[in] | values | is the host array containing the non-zero elements of the matrix |
[in] | rowIdx | is the row indices for the sparse array |
[in] | colIdx | is the column indices for the sparse array |
[in] | type | is the data type for the matrix |
[in] | stype | is the storage format of the sparse array |
[in] | src | is afHost if inputs are host arrays and afDevice if the arrays are device arrays. |
AFAPI array sparse | ( | const array | dense, |
const af::storage | stype = AF_STORAGE_CSR |
||
) |
This function converts a dense af::array into a sparse array.
[in] | dense | is the source dense matrix |
[in] | stype | is the storage format of the sparse array |
AFAPI array sparse | ( | const dim_t | nRows, |
const dim_t | nCols, | ||
const array | values, | ||
const array | rowIdx, | ||
const array | colIdx, | ||
const af::storage | stype = AF_STORAGE_CSR |
||
) |
This function converts af::array of values, row indices and column indices into a sparse array.
[in] | nRows | is the number of rows in the dense matrix |
[in] | nCols | is the number of columns in the dense matrix |
[in] | values | is the af::array containing the non-zero elements of the matrix |
[in] | rowIdx | is the row indices for the sparse array |
[in] | colIdx | is the column indices for the sparse array |
[in] | stype | is the storage format of the sparse array |
AFAPI array sparse | ( | const dim_t | nRows, |
const dim_t | nCols, | ||
const dim_t | nNZ, | ||
const void *const | values, | ||
const int *const | rowIdx, | ||
const int *const | colIdx, | ||
const dtype | type = f32 , |
||
const af::storage | stype = AF_STORAGE_CSR , |
||
const af::source | src = afHost |
||
) |
This function converts host or device arrays of values, row indices and column indices into a sparse array on the device.
[in] | nRows | is the number of rows in the dense matrix |
[in] | nCols | is the number of columns in the dense matrix |
[in] | nNZ | is the number of non zero elements in the dense matrix |
[in] | values | is the host array containing the non-zero elements of the matrix |
[in] | rowIdx | is the row indices for the sparse array |
[in] | colIdx | is the column indices for the sparse array |
[in] | type | is the data type for the matrix |
[in] | stype | is the storage format of the sparse array |
[in] | src | is afHost if inputs are host arrays and afDevice if the arrays are device arrays. |