New in Wolfram
Mathematica
8: CUDA and OpenCL Support
◄
previous
|
next
►
Software Development
Get Information on Loaded Programs
Get information about loaded CUDA or OpenCL programs.
In[1]:=
X
Needs["CUDALink`"] fun = CUDAFunctionLoad["__global__ void zero(int * in, int length) { int index = threadIdx.x + blockIdx.x * blockDim.x; if (index < length) in[index] = 0; }", "zero", {{_Integer}, _Integer}, {10}]; CUDAFunctionInformation[fun]
Out[1]=