C++ 为什么在编译OpenVino示例时出现此错误

C++ 为什么在编译OpenVino示例时出现此错误,c++,openvino,C++,Openvino,我使用文档中解释的过程构建示例,并且可以在windows 10中打开解决方案 当我尝试使用VS 2017编译代码时,我遇到以下错误: Error C3861 '_mm_blendv_ps': identifier not found ie_cpu_extension C:\local\Intel\computer_vision_sdk_2018.5.445\deployment_tools\inference_engine\src\extension\common\softma

我使用文档中解释的过程构建示例,并且可以在windows 10中打开解决方案

当我尝试使用VS 2017编译代码时,我遇到以下错误:

Error   C3861   '_mm_blendv_ps': identifier not found   ie_cpu_extension    C:\local\Intel\computer_vision_sdk_2018.5.445\deployment_tools\inference_engine\src\extension\common\softmax.h  81  

为什么会出现此错误以及如何修复此错误?

请确保softmax.h标头包含标头smmintrin.h,因为这是负责SSE4.1内部函数的标头。
希望这能解决问题

您为哪个目标编译?x86、x64或ARM?@PeterT目标是x64odd,应根据@PeterT Yes it is odd使用默认编译设置!CPU型号重要吗?我认为我拥有的CPU是相对旧的I5CPU。编译CPU应该没什么大不了的。目标CPU才是最重要的,提到的本质是SSE4.1,它应该在所有x64目标上都可用