I’m testing some 3rd-party code. Whenever I tested, I obtained the following message:
This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.
Just wonder if this means: I’m NOT using GPU version of TensorFlow? But ONLY CPU version of TensorFlow?
Cheers
Pei
@jiapei100,
Welcome to the Tensorflow Forum,
This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.
Yes, that’s correct. It indicates that you are using a CPU version of Tensorflow that is optimized to take advantage of the available CPU instructions in performance-critical operations.
Thank you!