cuda-api-wrappers
cuda-api-wrappers copied to clipboard
Support querying the CUDA module loading mode
CUDA modules can be loaded either eagerly or lazily (and this is controlled by an environment variable).
It's a global setting, which can be queried using cuModuleGetLoadingMode():
CUresult cuModuleGetLoadingMode ( CUmoduleLoadingMode* mode );
let's support that.