tensorflow运行提示未编译使用SSE4.1,SSE4.2等问题的解决方法

问题描述 每次运行TensorFlow 程序时,老是会提示未编译使用SSE4.1,SSE4.2等warnings 警告。web import tensorflow as tf a = tf.constant(32) b = tf.constant(2) x = tf.add(a,b) with tf.Session() as sess: print(sess.run(x)) 运行结果:w
相关文章
相关标签/搜索