Top "Cuda" questions

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

Cuda: library nvvm not found

I am trying to run the code below but an error is reported: NvvmSupportError: libNVVM cannot be found. Do conda …

python ubuntu cuda gpu numba
Installing cuda via brew and dmg

After attempting to install nvidia toolkit on MAC by following guide : http://docs.nvidia.com/cuda/cuda-installation-guide-mac-os-x/index.html#axzz4…

cuda gpu nvidia dmg
How do I discover the PCIe bus topology and slot numbers on the board?

For example, when I use multi-GPU system with CUDA C/C++ and GPUDirect 2.0 P2P, and I use nested PCI-Express …

c++ windows cuda pci pci-e
cudaMallocHost vs malloc for better performance shows no difference

I have gone through this site. From here I got that pinned memory using cudamallocHost gives better performance than cudamalloc. …

optimization cuda timing copying benchmarking
Confusion on CUDA/openCL and C++ AMP

I read that Microsoft is closely working with Nvidia to improve AMP performances. But my question is: is AMP a …

c++ cuda opencl c++-amp
How to link host code with a static CUDA library after separable compilation?

Alright, I have a really troubling CUDA 5.0 question about how to link things properly. I'd be really grateful for any …

cuda g++ static-linking dynamic-linking nvcc
how to use cublas library

I'm novice to cuda. I want to use cublas functionality in cuda programs and would like to know the procedure …

cuda cublas
What is the difference and relation among 'cuda' 'cudnn' 'cunn' and 'cutorch' in torch?

I see many torch codes use: require cudnn require cunn require cutorch What are these package used for? What is …

cuda torch cudnn
Graph algorithms on GPU

The current GPU execution and memory models are somehow limited (memory limit, limit of data structures, no recursion...). Do you …

cuda graph-theory gpu