Tagged Questions
14
votes
4answers
14k views
CUDA Driver API vs. CUDA runtime
When writing CUDA applications, you can either work at the driver level or at the runtime level as illustrated on this image (The libraries are CUFFT and CUBLAS for advanced math):
I assume the ...
4
votes
2answers
671 views
Context migration in CUDA.NET
I'm currently using CUDA.NET library by GASS.
I need to initialize cuda arrays (actually cublas vectors, but it doesn't matters) in one CPU thread and use them in other CPU thread. But CUDA context ...
3
votes
4answers
4k views
Getting array subsets efficiently
Is there an efficient way to take a subset of a C# array and pass it to another peice of code (without modifying the original array)? I use CUDA.net which has a function which copies an array to the ...
0
votes
1answer
331 views
CUDA compare arrays
Trying to make an app that will compare 1-to-multiple bitmaps. there is one reference bitmap and multiple other bitmaps. Result from each compare should be new bitmap with diffs. Maybe comparing ...