This package enables access to CUDA-capable devices from Java.
-
CudaKernel.Parameters.add(byte value)
Appends a byte value to the list of parameter values.
CudaKernel.Parameters.add(char value)
Appends a character value to the list of parameter values.
CudaKernel.Parameters.add(double value)
Appends a double value to the list of parameter values.
CudaKernel.Parameters.add(float value)
Appends a float value to the list of parameter values.
CudaKernel.Parameters.add(int value)
Appends a integer value to the list of parameter values.
CudaKernel.Parameters.add(long value)
Appends a long value to the list of parameter values.
CudaKernel.Parameters.add(short value)
Appends a short value to the list of parameter values.
Appends a buffer address to the list of parameter values.
CudaKernel.Parameters.clone()
Creates a copy of this parameter block.
CudaKernel.Parameters.set(int index,
byte value)
Replaces the parameter at the specified index with the given byte value.
CudaKernel.Parameters.set(int index,
char value)
Replaces the parameter at the specified index with the given character value.
CudaKernel.Parameters.set(int index,
double value)
Replaces the parameter at the specified index with the given double value.
CudaKernel.Parameters.set(int index,
float value)
Replaces the parameter at the specified index with the given float value.
CudaKernel.Parameters.set(int index,
int value)
Replaces the parameter at the specified index with the given int value.
CudaKernel.Parameters.set(int index,
long value)
Replaces the parameter at the specified index with the given long value.
CudaKernel.Parameters.set(int index,
short value)
Replaces the parameter at the specified index with a short value.
Replaces the parameter at the specified index with the given buffer address.
Creates a copy of the given parameter block.