Top "Cuda" questions

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

Compression library using Nvidia's CUDA

Does anyone know a project which implements standard compression methods (like Zip, GZip, BZip2, LZMA,...) using NVIDIA's CUDA library? I …

cuda compression gpgpu
How do I start a new CUDA project in Visual Studio 2008?

This is an incredibly basic question, but how do I start a new CUDA project in Visual Studio 2008? I have …

c++ visual-studio cuda
High level GPU programming in C++

I've been looking into libraries/extensions for C++ that will allow GPU-based processing on a high level. I'm not an …

c++ cuda gpu gpu-programming
CUDA_HOME path for Tensorflow

The Tensorflow linux installation instructions say: Ensure that you create the CUDA_HOME environment variable as described in the NVIDIA …

tensorflow cuda cudnn
Why can't libcudart.so.4 be found when compiling the CUDA samples under Ubuntu?

I'm trying to get my Cuda SDK samples running, but I get the following error: ./bandwidthTest: error while loading shared …

c++ unix ubuntu cuda gpu-programming
printing from cuda kernels

I am writing a cuda program and trying to print something inside the cuda kernels using the printf function. But …

c visual-studio-2010 cuda gpgpu
CMake Error: Variables are set to NOTFOUND

I installed cuda first using cuda-repo-ubuntu1604-9-0-local_9.0.176-1_amd64.deb. Now I'm trying to install OpenCV 3.3.0 But i'm …

opencv cmake cuda ubuntu-16.04
CUDA model - what is warp size?

What's the relationship between maximum work group size and warp size? Let’s say my device has 240 CUDA streaming processors (…

cuda gpgpu
What are the differences between CUDA compute capabilities?

What does compute capability 2.0 add over 1.3, 2.1 over 2.0, and 3.0 over 2.1?

cuda
In a CUDA kernel, how do I store an array in "local thread memory"?

I'm trying to develop a small program with CUDA, but since it was SLOW I made some tests and googled …

arrays memory cuda gpu-local-memory