device = torch.device('cuda')在paddlepaddle中应该改成什么

q7solyqu  于 2022-11-13  发布在  其他
关注(0)|答案(3)|浏览(211)

这个的功能应该是调用GPU,改成device = paddle.device.cuda.Stream(),出现错误
RuntimeError: (Unavailable) Class CUDAStream can only be initialized on the GPU platform. (at/paddle/paddle/fluid/pybind/cuda_streams_py.cc:281)
应该如何解决

vx6bjr1n

vx6bjr1n1#

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看 官网API文档常见问题历史IssueAI社区 来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

clj7thdc

clj7thdc2#

您好,可以尝试 place = paddle.CUDAPlace(0) ,请https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/CUDAPlace_cn.html#cudaplace 实现,谢谢。

hfwmuf9z

hfwmuf9z3#

或者您可以尝试 paddle.device.set_device("gpu") 指定特定的运行设备,请参考 https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/set_device_cn.html 实现,谢谢。

相关问题