I've recently installed TensorFlow using pip install on a MacOS. And even though TensorFlow works as expected I still get these warnings about using SSE4.1, SSE4.2 and AVX instructions basically every time I run a script.
The said warnings:
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
Inb4 install from sources:
I'm just looking to suppress these particular warnings.