gpt4 book ai didi

pytorch - 如何有条件地使用 torch.cuda.device()

转载 作者:行者123 更新时间:2023-12-04 13:13:12 27 4
gpt4 key购买 nike

我有一些代码封装在:

with torch.cuda.device(self.device):
# do a bunch of stuff

在我的 __init__ 中我有:

self.device = torch.device('cuda:0') if torch.cuda.is_available() else torch.device('cpu')

但是对于设备是cpu的情况怎么处理有点迷茫。因为 torch.cuda.device 已经明确用于 cuda。我应该只为函数写一个装饰器吗?好像有点过分了

最佳答案

根据 torch.cuda.device 的文档

device (torch.device or int) – device index to select. It’s a no-op if this argument is a negative integer or None.

基于此我们可以使用类似的东西

with torch.cuda.device(self.device if self.device.type == 'cuda' else None):
# do a bunch of stuff

self.device 不是 CUDA 设备时,这只是一个空操作。

关于pytorch - 如何有条件地使用 torch.cuda.device(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62801503/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com