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 ...
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 ...
2
votes
3answers
2k views

Allocate constant memory

I'm trying to set my simulation params in constant memory but without luck (CUDA.NET). cudaMemcpyToSymbol function returns cudaErrorInvalidSymbol. The first parameter in cudaMemcpyToSymbol is ...
0
votes
0answers
128 views

Getting CUDA in UDK

I'm trying to get Cuda into UDK. The only way to do this is to compile a DLL with functions UDKScript can access that will allow them to load precompiled cuda programs into the device. Similar to the ...
0
votes
1answer
186 views

cuda.net is based in CUDA Runtime or CUDA Driver?

I'm writing an article about CUDA and their wrappers and right now I'm stuck with what layer of CUDA is used by CUDA.NET or JCUDA. As this suggests: I guess as my program suggests when i use CUBLAS ...
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 ...