Is there a version of TensorFlow not compiled for AVX instructions?
A best practices approach suggested by peter-cordes is to see what gcc is going to make of your ‘what capabilities your cpu has’ by issuing the following: gcc -O3 -fverbose-asm -march=native -xc /dev/null -S -o- | less This command will provide information (all) about your cpu capabilities from the view of gcc, whom is going … Read more