Click here to Skip to main content
15,912,578 members
Everything / CUDAfy.NET

CUDAfy.NET

CUDAfy.NET

Great Reads

by Nick Kopp
Ultra high quality frequency domain image rotation on a GPU.

Latest Articles

by Nick Kopp
Ultra high quality frequency domain image rotation on a GPU.

All Articles

Sort by Score

CUDAfy.NET 

16 Sep 2013 by Nick Kopp
Ultra high quality frequency domain image rotation on a GPU.
29 Apr 2015 by Dave Kreskowiak
You really can't do that because your code is not executing the SQL query. The database engine parses and executes the query. Unless you're writing the database engine itself, using CUDA will not help you.Using the GPU is suited for solving massively parallel problems such as applying a...
30 Apr 2015 by Dave Kreskowiak
Start reading these[^]. You're really not going to get any help on this out of a forum environment because the discussions would be huge and nobody is going to write this code for you.
17 Sep 2013 by dieselc
Is there any way to call CUDAfy.net to Unity 3D ?
29 Apr 2015 by Sergey Alexandrovich Kryukov
I don't think it's realistic or make any practical sense. It probably would mean re-implementing LINQ based on CUDA.NET. This is my opinion based on how I see it; someone might correct me if I'm wrong.—SA
4 May 2015 by Member 10219452
Hi All, I'm a beginner in CUDAfy.Net GPU programming and i want copy string array to gpu to make an operation, how i can do it ?? and i'm using this syntax to copy int array:int N = 100000;int[] a = new int[N];// allocate the memory on the GPUint[] dev_a =...
18 Mar 2016 by taha93
I'm trying to use CUDAfy.NET in a web application which will be further called from a web form.When it tries to initiate a CudafyModule it gives the error as shown in pic below:ExceptionCode was working perfectly in console application. Is there anyway to get rid of this...
21 Apr 2020 by Richard MacCutchan
You need to get a copy of the library that conatains CuRand: cuRAND :: CUDA Toolkit Documentation[^]
30 Apr 2015 by Member 10219452
hi all,how to implement a subset of the SQLite command processor directly on the GPU using CUDA.Net on windows OS.thank you.
29 Apr 2015 by Member 10219452
I'm a beginner in CUDA.Net programming in GPU and i want to accelerate database query using GPU and CUDA.Net in windows OS not Linux. Is it possible or not and if it is possible can any one help me to do it ???thank you.
21 Apr 2020 by Văn Đợi Trương
Dear all, I want to create the random number in threads of kernel cudafy from 0-1 (similar ".NextDouble()" in C#) and from 0-18 (similar ".Next(0,18)" in c#). But I have no idea to create the generator CuRand, I already searched this matter but...