第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

numpy 數(shù)組可以在 GPU 中運(yùn)行嗎?

numpy 數(shù)組可以在 GPU 中運(yùn)行嗎?

尚方寶劍之說 2023-03-08 14:58:21
我正在使用 PyTorch。我有以下代碼:import numpy as npimport torchX = np.array([[1, 3, 2, 3], [2, 3, 5, 6], [1, 2, 3, 4]])X = torch.DoubleTensor(X).cuda()X_split = np.array_split(X.numpy(),                          indices_or_sections = 2,                          axis = 0)X_split但我收到此錯(cuò)誤:---------------------------------------------------------------------------TypeError                                 Traceback (most recent call last)<ipython-input-121-870b5d3f67b6> in <module>()----> 1 X_prime_class_split = np.array_split(X_prime_class.numpy(),       2                                      indices_or_sections = 2,      3                                      axis = 0)      4 X_prime_class_splitTypeError: can't convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.錯(cuò)誤消息很清楚,我知道如何通過僅包括.cpu(), ie 來修復(fù)此錯(cuò)誤。X_prime_class.cpu().numpy(). 我只是想知道這是否證實(shí)了 numpy 數(shù)組不能在 GPU/Cuda 中運(yùn)行?
查看完整描述

1 回答

?
至尊寶的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超10個(gè)贊

不,您通常不能在 GPU 陣列上運(yùn)行 numpy 函數(shù)。PyTorch 為 PyTorch 張量重新實(shí)現(xiàn)了 numpy 中的大部分功能。例如,torch.chunk工作方式類似于np.array_split您可以執(zhí)行以下操作:

我正在使用 PyTorch。我有以下代碼:


import numpy as np

import torch


X = np.array([[1, 3, 2, 3], [2, 3, 5, 6], [1, 2, 3, 4]])

X = torch.DoubleTensor(X).cuda()


X_split = np.array_split(X.numpy(), 

                         indices_or_sections = 2, 

                         axis = 0)

X_split

但我收到此錯(cuò)誤:


---------------------------------------------------------------------------

TypeError                                 Traceback (most recent call last)

<ipython-input-121-870b5d3f67b6> in <module>()

----> 1 X_prime_class_split = np.array_split(X_prime_class.numpy(), 

      2                                      indices_or_sections = 2,

      3                                      axis = 0)

      4 X_prime_class_split


TypeError: can't convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.

錯(cuò)誤消息很清楚,我知道如何通過僅包括.cpu(), ie 來修復(fù)此錯(cuò)誤。X_prime_class.cpu().numpy(). 我只是想知道這是否證實(shí)了 numpy 數(shù)組不能在 GPU/Cuda 中運(yùn)行?


查看完整回答
反對(duì) 回復(fù) 2023-03-08
  • 1 回答
  • 0 關(guān)注
  • 565 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)