I am just starting to play around with tensorflow (GPU) on Ubuntu 16.04 and have followed the installation instructions here Installing Tensorflow. After running the example, where you create the session (sess = tf.Session())
I get the following output:
2018-04-23 14:51:29.548236: I tensorflow/core/platform/cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2018-04-23 14:51:29.659644: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:898] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2018-04-23 14:51:29.659965: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1344] Found device 0 with properties:
name: GeForce GTX 1060 6GB major: 6 minor: 1 memoryClockRate(GHz): 1.7085
pciBusID: 0000:01:00.0
totalMemory: 5.93GiB freeMemory: 5.04GiB
2018-04-23 14:51:29.659980: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1423] Adding visible gpu devices: 0
2018-04-23 14:51:29.840482: I tensorflow/core/common_runtime/gpu/gpu_device.cc:911] Device interconnect StreamExecutor with strength 1 edge matrix:
2018-04-23 14:51:29.840526: I tensorflow/core/common_runtime/gpu/gpu_device.cc:917] 0
2018-04-23 14:51:29.840532: I tensorflow/core/common_runtime/gpu/gpu_device.cc:930] 0: N
2018-04-23 14:51:29.840728: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1041] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 4802 MB memory) -> physical GPU (device: 0, name: GeForce GTX 1060 6GB, pci bus id: 0000:01:00.0, compute capability: 6.1)
which is extremely overwhelming and confusing. Simple models run fine, so I don't think these are errors. I can't seem to find any examples of where this happens and wanted to know is this normal? Have I installed something incorrectly from what you can see in this output?