SymbolicCUDAFunction[name,args]
is a symbolic representation of a CUDA function declaration.
SymbolicCUDAFunction[name,args,body]
is a symbolic representation of a CUDA function definition.
SymbolicCUDAFunction
SymbolicCUDAFunction[name,args]
is a symbolic representation of a CUDA function declaration.
SymbolicCUDAFunction[name,args,body]
is a symbolic representation of a CUDA function definition.
Details and Options
- The CUDALink package must be loaded using Needs["CUDALink`"].
- Symbolic expressions are inert; they evaluate to themselves, staying in an unevaluated form.
- Symbolic expressions can be converted into a C string with ToCCodeString.
Examples
Basic Examples (1)
First, load the CUDALink application:
Needs["CUDALink`"]This creates a CUDA function definition:
SymbolicCUDAFunction[fun, {{CPointerType[mint], x}, {mint, i}}, CAssign[CArray[x, i], 0]]//ToCCodeStringA function declaration or prototype is created by leaving out the body:
SymbolicCUDAFunction[fun, {{CPointerType[mint], x}, {mint, i}}]//ToCCodeStringThe function body can contain SymbolicC expressions:
SymbolicCUDAFunction[ fun, {{CPointerType[mint], x}, {mint, i}},
CBlock[{
CAssign[CArray[x, COperator[Plus, {i, 2}]], i]
}]]//ToCCodeStringRelated Guides
-
▪
- CUDALink
Text
Wolfram Research (2010), SymbolicCUDAFunction, Wolfram Language function, https://reference.wolfram.com/language/CUDALink/ref/SymbolicCUDAFunction.html.
CMS
Wolfram Language. 2010. "SymbolicCUDAFunction." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/SymbolicCUDAFunction.html.
APA
Wolfram Language. (2010). SymbolicCUDAFunction. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/CUDALink/ref/SymbolicCUDAFunction.html
BibTeX
@misc{reference.wolfram_2026_symboliccudafunction, author="Wolfram Research", title="{SymbolicCUDAFunction}", year="2010", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/SymbolicCUDAFunction.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_symboliccudafunction, organization={Wolfram Research}, title={SymbolicCUDAFunction}, year={2010}, url={https://reference.wolfram.com/language/CUDALink/ref/SymbolicCUDAFunction.html}, note=[Accessed: 13-June-2026]}