Day: June 22, 2020

Technology tensorflow

compiling tensorflow AVX FMA

Step 1: Create a virtual environment to do the job python3 -m venv ./ Create the virtual environment in my target directory. For Python 3, the venv module comes with the standard library installed. The following directory is created with the above command. In order to use this environment’s packages/resources in isolation, we will need to “activate” […]

Technology tensorflow

tensor flow AVX FMA

While executing tensorflow code in Pycharm, I received the following warning: 2020-06-21 23:00:03.609546: I tensorflow/core/platform/cpu_feature_guard.cc:143] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA Advanced Vector Extensions (AVX) are extensions to the x86 instruction set architecture for microprocessors from Intel and AMD proposed by Intel in March 2008 and first […]

Back To Top