【问题标题】:Running Tensorflow on CPU is faster than running it on GPU在 CPU 上运行 TensorFlow 比在 GPU 上运行更快
【发布时间】:2019-12-11 04:53:23
【问题描述】:

我有一台配备 4GB 专用 Geforce GTX 960M 显卡的华硕 n552vw 笔记本电脑。我将这几行代码放在代码的开头,以比较使用 GPU 或 CPU 的训练速度,我看到似乎使用 CPU 胜出!

对于 GPU:

import os
os.environ['CUDA_VISIBLE_DEVICES'] = '0'

对于 CPU:

import os
os.environ['CUDA_VISIBLE_DEVICES'] = '-1'

我已经安装了 CUDA、cuDNN、tensorflow-gpu 等来提高我的训练速度,但似乎发生了相反的事情!

当我尝试第一个代码时,它说(在执行开始之前):

Train on 2128 samples, validate on 22 samples
Epoch 1/1
2019-08-02 18:49:41.828287: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-08-02 18:49:42.457662: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1433] Found device 0 with properties: 
name: GeForce GTX 960M major: 5 minor: 0 memoryClockRate(GHz): 1.176
pciBusID: 0000:01:00.0
totalMemory: 4.00GiB freeMemory: 3.34GiB
2019-08-02 18:49:42.458819: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1512] Adding visible gpu devices: 0
2019-08-02 18:49:43.776498: I tensorflow/core/common_runtime/gpu/gpu_device.cc:984] Device interconnect StreamExecutor with strength 1 edge matrix:
2019-08-02 18:49:43.777007: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990]      0 
2019-08-02 18:49:43.777385: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1003] 0:   N 
2019-08-02 18:49:43.777855: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1115] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 3050 MB memory) -> physical GPU (device: 0, name: GeForce GTX 960M, pci bus id: 0000:01:00.0, compute capability: 5.0)
2019-08-02 18:49:51.834610: I tensorflow/stream_executor/dso_loader.cc:152] successfully opened CUDA library cublas64_100.dll locally

而且它真的很慢[Finished in 263.2s],但是当我尝试第二个代码时它说:

Train on 2128 samples, validate on 22 samples
Epoch 1/1
2019-08-02 18:51:43.021867: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-08-02 18:51:43.641123: E tensorflow/stream_executor/cuda/cuda_driver.cc:300] failed call to cuInit: CUDA_ERROR_NO_DEVICE: no CUDA-capable device is detected
2019-08-02 18:51:43.645072: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:161] retrieving CUDA diagnostic information for host: DESKTOP-UQ8B9FK
2019-08-02 18:51:43.645818: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:168] hostname: DESKTOP-UQ8B9FK

而且它比第一个代码[Finished in 104.7s] 快得多!怎么可能?

编辑:这是与Tensorflow 相关的代码部分:

model = Sequential()
model.add((LSTM(un , return_sequences = True)))
model.add(Dropout(dp)) 

model.add((LSTM(un , return_sequences = True)))
model.add(Dropout(dp)) 

model.add((LSTM(un , return_sequences = True)))
model.add(Dropout(dp)) 

model.add((LSTM(un , return_sequences = True)))
model.add(Dropout(dp)) 

model.add((LSTM(un , return_sequences = False)))
model.add(Dropout(dp)) 

model.add(RepeatVector(rp))

model.add((LSTM(un , return_sequences= True))) 
model.add(Dropout(dp))   

model.add((LSTM(un , return_sequences= True))) 
model.add(Dropout(dp))

model.add((LSTM(un , return_sequences= True))) 
model.add(Dropout(dp))

model.add((LSTM(un , return_sequences= True))) 
model.add(Dropout(dp))

model.add((LSTM(un , return_sequences= True))) 
model.add(Dropout(dp))

model.add(TimeDistributed(Dense(ds))) 

【问题讨论】:

  • 你在训练什么模型?请为其添加代码。
  • @MatiasValdenegro:代码很大而且很私密,但我使用的是keras 库的 LSTM 模型。我还尝试了从 5 到 50 的不同 batch_size,但没有发生任何差异。
  • 当然,但只是描述模型,有多少层?多少个参数?
  • @MatiasValdenegro:我编辑了我的问题。

标签: tensorflow keras windows-10 gpu cpu


【解决方案1】:

这里有两个相关问题:

  • 模型需要“足够大”才能从 GPU 加速中获利,因为需要将训练数据传输到 GPU,并且需要从 GPU 下载新的权重,这种开销会降低效率,使得事情变慢了。
  • 对于循环层,并行化它们并不容易,因为它们有很多跨时间步长的顺序计算。您可以考虑使用CuDNNLSTM 层而不是普通的 LSTM,因为它针对 GPU 的使用进行了优化。

一般来说,对于小型模型,在 GPU 上的训练可能不会比在 CPU 上的训练快。

【讨论】:

  • 非常感谢您的评论。你能估计多少层将被视为大型模型并且有利于在 GPU 上进行训练吗?请提供有关“足够大”模型的更多详细信息。
  • @ensan3kamel 不,我们无法估计,这是您通过实验确定的。需要考虑的因素太多。
  • 使用CuDNNLSTM 会产生更大的不同!谢谢!
  • @ensan3kamel 记得点赞并接受答案。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2018-04-06
  • 2018-06-18
  • 2019-08-18
  • 2017-07-27
  • 2020-05-13
  • 2017-12-03
  • 1970-01-01
相关资源
最近更新 更多