I have a problem with tesorflow session or python. Everytime I try to print some tensor values to check the network works well, the program stops with this error.
" Process finished with exit code -1073741819 (0xC0000005) "
I use python 3.5
and tensorflow-gpu 1.14.0
now.
I also tried a very simple code like below, the process stopped without printing any values.
I can't find out what's wrong.
Can anyone help me? Thanks.
input = tf.constant([2, 3, 4])
with tf.compat.v1.Session() as sess:
print(sess.run(input))
I also can see this comment what I've never seen before. Is this the problem?
" GPU libraries are statically linked, skip dlopen check."