cuda-api-wrappers icon indicating copy to clipboard operation
cuda-api-wrappers copied to clipboard

Support querying the CUDA module loading mode

Open eyalroz opened this issue 1 year ago • 0 comments

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.

eyalroz avatar Sep 06 '24 17:09 eyalroz