質問編集履歴

1

搭載されているGPUと学習実行時の最初のアウトプットを記述しました

2019/01/28 05:14

投稿

mirai0322
mirai0322

スコア24

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,36 @@
10
10
 
11
11
 
12
12
 
13
+ 機械学習の最初のアウトプット
14
+
15
+ ```python
16
+
17
+ Using TensorFlow backend.
18
+
19
+ 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
20
+
21
+ 2019-01-28 14:14:18.122260: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
22
+
23
+ name: GeForce GT 630 major: 2 minor: 1 memoryClockRate(GHz): 1.62
24
+
25
+ pciBusID: 0000:01:00.0
26
+
27
+ totalMemory: 1.00GiB freeMemory: 822.90MiB
28
+
29
+ 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.
30
+
31
+ 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:
32
+
33
+ 2019-01-28 14:14:18.202673: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 0
34
+
35
+ 2019-01-28 14:14:18.214962: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 0: N
36
+
37
+ ```
38
+
39
+
40
+
41
+ gpuが認識されているかチェックしたコード
42
+
13
43
  ```Python
14
44
 
15
45
  from tensorflow.python.client import device_lib
@@ -64,6 +94,10 @@
64
94
 
65
95
  ### 環境
66
96
 
97
+ GPU:GeForce GT630
98
+
99
+
100
+
67
101
  CUDA 9.0
68
102
 
69
103
  ```nvccv