A CUDA context hold state information for controlling computational work on a CUDA device, including memory allocations, loaded modules of code, memory region mappings etc.
Questions tagged [cuda-context]
46 questions
-1
votes
1 answer
CUDA context lifetime
In my application I have some part of the code that works as follows
main.cpp
int main()
{
//First dimension usually small (1-10)
//Second dimension (100 - 1500)
//Third dimension (10000 - 1000000)
vector>> someInfo;
…

BRabbit27
- 6,333
- 17
- 90
- 161