I installed Tensorflow with GPU support and want to check it if I really installed it properly.
I tried simple check provided by Tensorflow which says:
$ python
...
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
it produced the same results. However I faced many errors during the installation and solved them somehow. Is it really enough to make sure that I can go on and use Tensorflow? Thank you