gpt4 book ai didi

python - 为什么 Pytorch (CUDA) 在 GPU 上运行缓慢

转载 作者:太空宇宙 更新时间:2023-11-04 00:11:09 24 4
gpt4 key购买 nike

我在 Linux 上使用 Pytorch 已经有一段时间了,最​​近决定尝试让更多脚本在我的 Windows 桌面上使用我的 GPU 运行。自从尝试这个以来,我注意到我的 GPU 执行时间和我的 CPU 执行时间在相同的脚本上存在巨大的性能差异,以至于我的 GPU 比 CPU 慢得多。为了说明这一点,我只是在这里找到了一个教程程序 (https://pytorch.org/tutorials/beginner/pytorch_with_examples.html#pytorch-tensors)

import torch
import datetime
print(torch.__version__)

dtype = torch.double
#device = torch.device("cpu")
device = torch.device("cuda:0")

# N is batch size; D_in is input dimension;
# H is hidden dimension; D_out is output dimension.
N, D_in, H, D_out = 64, 1000, 100, 10

# Create random input and output data
x = torch.randn(N, D_in, device=device, dtype=dtype)
y = torch.randn(N, D_out, device=device, dtype=dtype)

# Randomly initialize weights
w1 = torch.randn(D_in, H, device=device, dtype=dtype)
w2 = torch.randn(H, D_out, device=device, dtype=dtype)


start = datetime.datetime.now()
learning_rate = 1e-6
for t in range(5000):
# Forward pass: compute predicted y
h = x.mm(w1)
h_relu = h.clamp(min=0)
y_pred = h_relu.mm(w2)

# Compute and print loss
loss = (y_pred - y).pow(2).sum().item()
#print(t, loss)

# Backprop to compute gradients of w1 and w2 with respect to loss
grad_y_pred = 2.0 * (y_pred - y)
grad_w2 = h_relu.t().mm(grad_y_pred)
grad_h_relu = grad_y_pred.mm(w2.t())
grad_h = grad_h_relu.clone()
grad_h[h < 0] = 0
grad_w1 = x.t().mm(grad_h)

# Update weights using gradient descent
w1 -= learning_rate * grad_w1
w2 -= learning_rate * grad_w2

end = datetime.datetime.now()

print(end-start)

我将 Epoch 的数量从 500 增加到 5000,因为我了解到第一个 CUDA 调用由于初始化而非常慢。但是性能问题仍然存在。

使用 device = torch.device("cpu") 打印出来的最后时间是正常的大约 3-4 秒,嗯 device = torch.device("cuda:0") 在大约 13-15 秒内执行

我已经通过多种不同的方式重新安装了 Pytorch(当然是卸载了之前的安装),但问题仍然存在。我希望有人可以帮助我,如果我可能错过了一组(没有安装其他 API/程序)或者在代码中做错了什么。

python :v3.6

torch :v0.4.1

显卡:NVIDIA GeForce GTX 1060 6GB

任何帮助将不胜感激:slight_smile:

最佳答案

当您以较小的批量运行时,在 gpu 上运行可能会很昂贵。如果将更多数据放入 gpu,意味着增加批量大小,那么您可以观察到数据量的显着增加。是的,gpu 使用 float32 比使用 double 运行得更好。试试这个

**

N, D_in, H, D_out = 128, 1000, 500, 10
dtype = torch.float32

**

关于python - 为什么 Pytorch (CUDA) 在 GPU 上运行缓慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52458508/

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