Struct cuda_oxide::module::Module [−][src]
pub struct Module<'a> { /* fields omitted */ }
Expand description
A loaded CUDA module
Implementations
Takes a raw CUDA kernel image and loads the corresponding module module into the current context. The pointer can be a cubin or PTX or fatbin file as a NULL-terminated text string
Same as Module::load
but uses fatCubin
format.
Retrieve a reference to a define CUDA kernel within the module.
Get a pointer to a global variable defined by a CUDA module.
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Module<'a>
impl<'a> UnwindSafe for Module<'a>