Questions tagged as 'cuda'

1
answer

CUDA and OpenCL recursion

Is it possible to work with recursion in parallel when working with technologies unique to multielement using the video card as instrument CUDA and OpenCL ? if so, how do we synchronize and pass values, if not how to simulate this r...
asked by 23.05.2015 / 16:51
0
answers

Error executing pycuda code: "nvcc fatal: Value 'sm_61' is not defined for option 'gpu-architecture'

I just installed pycuda on Ubuntu 16.04 and am trying to verify that it is working. I'm trying to run: #https://documen.tician.de/pycuda/tutorial.html import pycuda.driver as cuda import pycuda.autoinit from pycuda.compiler import SourceModul...
asked by 26.08.2018 / 06:09
0
answers

Calculation in parallel using GeForce Cuda

I have the following method that calculates the PI value serially: public static double CalculoPISerie() { double integral = 0; double h = 1.0 / NUMERO; for (int i = 0; i <= NUMERO; i++)...
asked by 12.11.2016 / 00:26
1
answer

Matrix multiplication does not work

I'm trying to use CUDA to perform multiplication of width-matrices. But I'm encountering the following error: I have two square arrays with dimension 2632x2632. When I try to multiply them, the code does not perform multiplication, and the answe...
asked by 15.02.2018 / 21:05