I have the following code:
import tensorflow as tf
print("Hello")
And the output is:
This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
Hello # This is printed about 5 seconds after the message
I had looked into the meaning of the message in this thread and in this one, but failed to make it disappear (and to run any program in less than 5 seconds). Any help would be greatly appreciated.