CUDASparseVector[sparse,type]
yields a sparse vector of given type which resides on a CUDA enabled GPU.
CUDASparseVector
CUDASparseVector[sparse,type]
yields a sparse vector of given type which resides on a CUDA enabled GPU.
Details and Options
- The CUDALink application must be loaded using Needs["CUDALink`"].
- The resources used by a CUDASparseVector are automatically reclaimed from the GPU when they are no longer used.
- The data in a CUDASparseVector can be retrieved by Normal.
- A number of functions accept and return CUDASparseVector objects allowing operations to work with data that stays on the GPU.
- Possible types for CUDASparseVector are:
-
"Real32" "ComplexReal32" "Real64" "ComplexReal64"
Examples
open all close allBasic Examples (1)
First, load the CUDALink application:
Needs["CUDALink`"]Create a sparse vector of data that lives on the GPU:
vec = CUDASparseVector[ SparseArray[Table[{i} -> i, {i, 3}]], "Real64"]Retrieve the data from a CUDASparseVector:
Normal[vec]Multiply a dense matrix into the sparse vector (the result also lives on the GPU):
mat = CUDAMatrix[ {{1., 2., 3.}, {4., 5., 6.}, {7., 8., 9.}}];
CUDADot[mat, vec]Scope (1)
Possible Issues (1)
Normal of a CUDASparseVector is a SparseArray:
cuspvec = CUDASparseVector[ SparseArray[Table[{i} -> i, {i, 3}]], "Real64"];
Normal[cuspvec]To get the underlying data, Normal is applied twice:
Normal[Normal[cuspvec]]Tech Notes
Related Guides
-
▪
- CUDALink
Text
Wolfram Research (2022), CUDASparseVector, Wolfram Language function, https://reference.wolfram.com/language/CUDALink/ref/CUDASparseVector.html.
CMS
Wolfram Language. 2022. "CUDASparseVector." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/CUDASparseVector.html.
APA
Wolfram Language. (2022). CUDASparseVector. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/CUDALink/ref/CUDASparseVector.html
BibTeX
@misc{reference.wolfram_2026_cudasparsevector, author="Wolfram Research", title="{CUDASparseVector}", year="2022", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/CUDASparseVector.html}", note=[Accessed: 15-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_cudasparsevector, organization={Wolfram Research}, title={CUDASparseVector}, year={2022}, url={https://reference.wolfram.com/language/CUDALink/ref/CUDASparseVector.html}, note=[Accessed: 15-June-2026]}