Relative Content

Tag Archive for cudacuda-drivercuda-graphs

What is the meaning of each member variable of the CUDA_BATCH_MEM_OP_NODE_PARAMS structure?

typedef struct CUDA_BATCH_MEM_OP_NODE_PARAMS_st { CUcontext ctx; unsigned int count; CUstreamBatchMemOpParams *paramArray; unsigned int flags; } CUDA_BATCH_MEM_OP_NODE_PARAMS; I want to validate the CUDA_BATCH_MEM_OP_NODE_PARAMS parameters, but I don’t know what their member variables mean, especially count and flags. What range should their variable values be in? It seems that flags are not currently used, it must be […]