如何解决当我尝试从 pycuda 运行关于 'get_curand_version'
当我尝试在下面运行这些行时,出现了一些错误:
from __future__ import absolute_import
import pycuda.gpuarray as gpuarray
import pycuda.driver as cuda
import pycuda.autoinit
import numpy as np
from pycuda.curandom import rand as curand
a_gpu = curand((50,))
b_gpu = curand((50,))
然后我收到错误消息:
Traceback (most recent call last):
File "C:/Users/xxxxx/Desktop/pycuda_test.py",line 281,in <module>
from pycuda.curandom import rand
File "D:\toolsware\anaconda\envs\pytorch\lib\site-packages\pycuda\curandom.py",line 257,in <module>
get_curand_version = _curand.get_curand_version
AttributeError: module 'pycuda._driver' has no attribute 'get_curand_version'
我检查了它提到的 curandom.py:
try:
import pycuda._driver as _curand # used to be separate module
except ImportError:
def get_curand_version():
return None
else:
get_curand_version = _curand.get_curand_version
当我来到这一行时,它显示“找不到要转到的声明”
_curand.get_curand_versionit
这让我很困惑。如果有人对此有所了解,请帮忙。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。