Numbapro快速入门指南错误

时间:2014-04-16 02:33:10

标签: python gpu anaconda numba-pro

我正在尝试关注NumbaPro quickstart guide,但在按照说明操作时出现错误。

以下是我的情况:

  • Python 2.7.6
  • Cuda编译工具v5.5.0
  • conda 3.4.1
  • 加速1.5.0
  • Windows 7专业版
  • Nvidia GeForce卡

我的代码:

from numbapro import vectorize, float32
@vectorize([float32(float32, float32)], target=’gpu’)
def sum(a, b):
    return a + bnnn

我收到以下错误:

UnboundLocalError: Local varriable 'CudaSupportError' referenced before assignment

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我的电脑上的脚本没问题,我的情况是:

  • 加速-1.8
  • cudatoolkit-6
  • numbapro-0.16.0-np19py27_p0
  • numbapro_cudalib-0.1-0

似乎你的康茄舞需要更新。尝试:

conda update conda
conda install accelerate

然后再次运行。