Most voted "cuda" questions
CUDA is a general-purpose parallel computing platform that takes advantage of NVIDIA Graphics Processing Units (Gpus) to solve many complex computational problems in a fraction of the time needed on a CPU. If the question is not about CUDA, do not use this tag, even if you are using CUDA in your project.
Learn more…4 questions
Sort by count of
-
10
votes2
answers256
viewsRecursion in CUDA and Opencl
It is possible to work with recursiveness in parallel when working with unique technologies for parelelism (Multithread) using the graphics card as an instrument CUDA and OpenCL? if yes how is done…
-
3
votes0
answers69
viewsError executing pycuda code: "nvcc fatal : Value 'sm_61' is not defined for option 'gpu-Architecture"
I just installed the pycuda on Ubuntu 16.04 and I’m trying to check if it’s working. I’m trying to execute: #https://documen.tician.de/pycuda/tutorial.html import pycuda.driver as cuda import…
-
2
votes0
answers15
viewsCUDA. Threads "disappearing" in sequential executions
I have been working on a project using CUDA to perform a segmentation operation. In my project I have some conditions if which modify a matrix by adding a 1 to the index of this matrix according to…
-
1
votes0
answers75
viewsParallel calculation using Geforce Cuda
I have the following method that calculates the value of PI in a serial way: public static double CalculoPISerie() { double integral = 0; double h = 1.0 / NUMERO; for (int i = 0; i <= NUMERO;…