Tagged Questions

CUDA.net is a cross-platform API allowing .NET applications to use CUDA (NVIDIA's parallel computing architecture) functionality.

learn more… | top users | synonyms

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
655 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 ...
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 ...
1
vote
2answers
1k views

Hello-world for CUDA.Net

I'm trying to write a childish app with CUDA.Net, but I'm out of luck. I've figured out to: using GASS.CUDA; // ... var c = new CUDA(); // c.Launch(myfunc); // ???? how ??? myfunc apparently ...
1
vote
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
0answers
122 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
176 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
2answers
342 views

Will CUDA speed up moving lots of data from Excel sheets into a database?

I'm developing a program that moves a lot of data from Excel Sheets to a database. Is it possible for something like CUDA to speed up the process? Is it possible for me to use it to open more than one ...
0
votes
1answer
324 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 ...