OpenVino _mm_blendv_ps Compile Error

While trying to compile demo samples of OpenVino, I encountered the following error:

###############|| Build Inference Engine samples using MS Visual Studio (MSBuild.exe) ||###############

Waiting for 0 seconds, press a key to continue ...
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\MSBuild.exe" Samples.sln /p:Configuration=Release /t:classification_sample /clp:ErrorsOnly /m
Microsoft (R) Build Engine version 15.8.169+g1ccb72aefa for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.

     8>C:\Intel\computer_vision_sdk_2018.4.420\deployment_tools\inference_engine\src\extension\common\softmax.h(92): error C3861: '_mm_blendv_ps': iden
       tifier not found [C:\Users\JlEnriquez\Documents\Intel\OpenVINO\inference_engine_samples_2017\ie_cpu_extension\ie_cpu_extension.vcxproj]
Error

The _mm_blendv_ps is linked with the SSE instruction that was unknown from my computer environment. I then tried to investigate whether the CPU instruction is missing from my system:

Instructions: MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, EM64T, VT-x
Instructions: MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, EM64T, VT-x

I am looking specifically for SSE4.1 when _mm_blendv_ps instruction was introduced per Intel documentation.

Apparently, looking up with the header I needed to change the external dependency file "defs.h" which includes the header: emmintrin.h. This should be changed to either: smmintrin.h or nmmintrin.h (Btw, defs.h header file is located at: C:\Intel\computer_vision_sdk_yyyy.mm.dd
deployment_tools\inference_engine\src\extension\common\defs.h)

I am not sure why emmintrin.h was used, it only has SSE2 instructions on it. Below is the table for reference:

TechnologiesHeader
MMXmmintrin.h
SSExmmintrin.h
SSE2emmintrin.h
SSE3pmmintrin.h
SSSE3tmmintrin.h
SSE4.1smmintrin.h
SSE4.2nmmintrin.h
AESwmmintrin.h
AVX, AVX2, FMAimmintrin.h
AVX-512zmmintrin.h

I still have to ask for support from Intel on DevZone why emmintrin.h instructions was used though.