質問編集履歴
1
搭載されているGPUと学習実行時の最初のアウトプットを記述しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,6 +4,21 @@
|
|
4
4
|
### 困っていること
|
5
5
|
機械学習の学習速度が遅いと思い調べてみたところ、gpuを認識していないようでした。
|
6
6
|
|
7
|
+
機械学習の最初のアウトプット
|
8
|
+
```python
|
9
|
+
Using TensorFlow backend.
|
10
|
+
2019-01-28 14:14:17.288077: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
|
11
|
+
2019-01-28 14:14:18.122260: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
|
12
|
+
name: GeForce GT 630 major: 2 minor: 1 memoryClockRate(GHz): 1.62
|
13
|
+
pciBusID: 0000:01:00.0
|
14
|
+
totalMemory: 1.00GiB freeMemory: 822.90MiB
|
15
|
+
2019-01-28 14:14:18.156877: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1461] Ignoring visible gpu device (device: 0, name: GeForce GT 630, pci bus id: 0000:01:00.0, compute capability: 2.1) with Cuda compute capability 2.1. The minimum required Cuda capability is 3.7.
|
16
|
+
2019-01-28 14:14:18.201366: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
|
17
|
+
2019-01-28 14:14:18.202673: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 0
|
18
|
+
2019-01-28 14:14:18.214962: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 0: N
|
19
|
+
```
|
20
|
+
|
21
|
+
gpuが認識されているかチェックしたコード
|
7
22
|
```Python
|
8
23
|
from tensorflow.python.client import device_lib
|
9
24
|
print(device_lib.list_local_devices())
|
@@ -31,6 +46,8 @@
|
|
31
46
|
Tensorflowインストール時には対応したCUDAとcuDNNをインストールしました。
|
32
47
|
|
33
48
|
### 環境
|
49
|
+
GPU:GeForce GT630
|
50
|
+
|
34
51
|
CUDA 9.0
|
35
52
|
```nvccv
|
36
53
|
nvcc: NVIDIA (R) Cuda compiler driver
|