Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CUDA 6.0 cudaMallocManaged error

Tags:

cuda

I downloaded the CUDA 6.0 RC, and wrote a simple program to test the unified memory. But I got a cudaErrorNotSupported error when I run to cudaMallocManaged function. My GPU is GeForce GT 620, is there any problem with the GPU?

like image 503
Kill Console Avatar asked Apr 20 '26 17:04

Kill Console


1 Answers

Unified Memory in CUDA 6 requires a cc 3.0 or higher device -- this is noted in the documentation for Unified Memory usage in the CUDA 6 programming guide.

Your GeForce GT 620 GPU is a cc 2.1 device.

Unified Memory features (including cudaMallocManaged) are not supported on cc2.1 devices.

like image 109
Robert Crovella Avatar answered Apr 24 '26 03:04

Robert Crovella