Top "Cuda" questions

CUDA (Compute Unified Device Architecture) is a parallel computing platform and programming model for NVIDIA GPUs (Graphics Processing Units).

How to find cuda version in ubuntu?

I installed cuda 8.0 in my ubuntu 16.04 machine and checked the cuda version using the command "nvcc --version". it shows version …

cuda ubuntu-16.04
GPU Emulator for CUDA programming without the hardware

Question: Is there an emulator for a Geforce card that would allow me to program and test CUDA without having …

cuda gpu emulation cpu
How to let cmake find CUDA

I am trying to build this project, which has CUDA as a dependency. But the cmake script cannot find the …

c++ build cuda cmake
Python GPU programming

I am currently working on a project in python, and I would like to make use of the GPU for …

python cuda gpu
CUDA List of atomic operations

I was wondering if there is a complete list of atomic operations. I couldn't find something like that on the …

cuda gpu-atomics
Ubuntu 16.04, CUDA 8 - CUDA driver version is insufficient for CUDA runtime version

I've installed the latest nvidia drivers (375.26) manually, and installed CUDA using cuda_8.0.44_linux.run (skipping the driver install there, since …

ubuntu cuda
Does __syncthreads() synchronize all threads in the grid?

...or just the threads in the current warp or block? Also, when the threads in a particular block encounter (in …

cuda
Cuda gridDim and blockDim

I get what blockDim is, but I have a problem with gridDim. Blockdim gives the size of the block, but …

cuda
When to call cudaDeviceSynchronize?

when is calling to the cudaDeviceSynchronize function really needed?. As far as I understand from the CUDA documentation, CUDA kernels …

cuda gpu gpgpu
How can I compile CUDA code then link it to a C++ project?

I am looking for help getting started with a project involving CUDA. My goal is to have a project that …

cuda g++ nvcc