1

我在 2 岁的 Macbook Pro 上的 Ubuntu 12.04 上运行 MATLAB R2011b。我想利用 MATLAB 的 GPU 功能。但是,当我尝试时,我发现我的 GPU 似乎不够强大:

>> gpuArray(rand(10))
Error using gpuArray (line 28)
No device supporting CUDA was found.

>> gpuDevice
Warning: The device selected (device 1, "GeForce GT 330M") does not have sufficient compute
capability to be used. Compute capability 1.3 (or greater) is required, the selected device
has compute capability 1.2. 

这是否意味着我永远无法在我的机器上使用 MATLAB 的 GPU 函数?有哪些替代方案?

4

1 回答 1

6

GT330m 是计算能力 1.2 来自 mathworks 的 MATLAB GPU 支持需要计算能力 1.3(或更高),正如您所发现的。我不知道“从不”该说什么。那是很长一段时间。但是这个线程表明来自 acceleyes 的夹克可能是一种替代方案,并且还给出了 Mathworks 对 cc 1.3 或更高版本的限制的观点。

于 2012-10-29T14:26:44.047 回答