Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
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.
Posted
Comments
Sascha Lefèvre 29-Apr-15 15:25pm    
I suggest you to take a look at Nick Kopp's articles on CUDA.NET here:
http://www.codeproject.com/Articles/Nick-Kopp#articles
Sergey Alexandrovich Kryukov 29-Apr-15 16:56pm    
I don't think it's realistic or make any practical sense. It probably would mean re-implementing LINQ based on CUDA.NET. If this LINQ to database, essentially, the database engine would have to be re-implemented. This is my opinion based on how I see it; someone might correct me if I'm wrong.
—SA

1 solution

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 transformation to a large set of points. A database query does not qualify.
 
Share this answer
 
Comments
Sascha Lefèvre 29-Apr-15 10:12am    
+5
Sergey Alexandrovich Kryukov 29-Apr-15 16:57pm    
Good point, a 5.
—SA
Member 10219452 30-Apr-15 16:53pm    
Can you help me in this point please ??
Sergey Alexandrovich Kryukov 30-Apr-15 16:58pm    
Why, me? Why? What's unclear in this answer?
—SA
Member 10219452 30-Apr-15 17:14pm    
i'm so sorry, i'm not see your top answer and i understand your opinion and thank you for your opinion.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900