您好,登錄后才能下訂單哦!
這篇文章主要講解了“PyTorch device與cuda.device怎么用”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“PyTorch device與cuda.device怎么用”吧!
import torch print("Default Device : {}".format(torch.Tensor([4, 5, 6]).device))
輸出情況:
Default Device : cpu
輸入情況
device = torch.Tensor([1, 2, 3], device="cpu:0").device print("Device Type: {}".format(device))
輸出情況
Device Type: cpu
輸入情況
gpu = torch.device("cuda:0") print("GPU Device:【{}:{}】".format(gpu.type, gpu.index))
輸出情況
GPU Device:【cuda:0】
輸入情況
print("Total GPU Count :{}".format(torch.cuda.device_count())) print("Total CPU Count :{}".format(torch.cuda.os.cpu_count()))
輸出情況
Total GPU Count :1
Total CPU Count :8
輸入情況
data = torch.Tensor([[1, 4, 7], [3, 6, 9], [2, 5, 8]]) print(data.shape)
輸出情況
torch.Size([3, 3])
輸入情況:
data_gpu = data.to(torch.device("cuda:0")) print(data_gpu.device)
輸出情況:
cuda:0
輸入情況:
data_gpu2 = data.cuda(torch.device("cuda:0")) # 如果只有一塊gpu的話 直接寫成這樣:data_gpu2 = data.cuda() print(data_gpu2.device)
輸出情況:
cuda:0
感謝各位的閱讀,以上就是“PyTorch device與cuda.device怎么用”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)PyTorch device與cuda.device怎么用這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。