Uses of Class
jcuda.driver.CUmodule

Packages that use CUmodule
jcuda.driver Contains the classes related to the JCuda driver API. 
 

Uses of CUmodule in jcuda.driver
 

Methods in jcuda.driver with parameters of type CUmodule
static int JCudaDriver.cuModuleGetFunction(CUfunction hfunc, CUmodule hmod, java.lang.String name)
          Returns a function handle.
static int JCudaDriver.cuModuleGetGlobal(CUdeviceptr dptr, long[] bytes, CUmodule hmod, java.lang.String name)
          Returns a global pointer from a module.
static int JCudaDriver.cuModuleGetSurfRef(CUsurfref pSurfRef, CUmodule hmod, java.lang.String name)
          Returns a handle to a surface reference.
static int JCudaDriver.cuModuleGetTexRef(CUtexref pTexRef, CUmodule hmod, java.lang.String name)
          Returns a handle to a texture reference.
static int JCudaDriver.cuModuleLoad(CUmodule module, java.lang.String fname)
          Loads a compute module.
static int JCudaDriver.cuModuleLoadData(CUmodule module, byte[] image)
          Load a module's data.
static int JCudaDriver.cuModuleLoadDataEx(CUmodule phMod, Pointer p, int numOptions, int[] options, Pointer optionValues)
          Load a module's data with options.
static int JCudaDriver.cuModuleLoadDataJIT(CUmodule module, Pointer pointer, JITOptions jitOptions)
          A wrapper function for JCudaDriver.cuModuleLoadDataEx(CUmodule, Pointer, int, int[], Pointer) which allows passing in the options for the JIT compiler, and obtaining the output of the JIT compiler via a JITOptions object.
static int JCudaDriver.cuModuleLoadFatBinary(CUmodule module, byte[] fatCubin)
          Load a module's data.
static int JCudaDriver.cuModuleUnload(CUmodule hmod)
          Unloads a module.