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, int[] bytes, CUmodule hmod, java.lang.String name)
          Returns a global pointer from a module.
static int JCudaDriver.cuModuleGetTexRef(CUtexref pTexRef, CUmodule hmod, java.lang.String name)
          Gets 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)
          Loads a module’s data.
static int JCudaDriver.cuModuleLoadDataEx(CUmodule phMod, Pointer p, int numOptions, int[] options, Pointer optionValues)
          Takes a pointer p and loads the corresponding module phMod into the current context.
static int JCudaDriver.cuModuleLoadFatBinary(CUmodule module, byte[] fatCubin)
          Loads a fat-binary object.
static int JCudaDriver.cuModuleUnload(CUmodule hmod)
          Unloads a module.