第一次使用SSE指令集

想復現基於SSE指令集的圖像處理算法,https://github.com/BBuf/Image-processing-algorithm-Speedgit

運行時提示如下相似錯誤github

那麼該包含什麼路徑及頭文件,算法

1)在https://docs.microsoft.com/zh-cn/previous-versions/visualstudio/visual-studio-2010/bb514068(v=vs.100)處搜索對應的函數_mm_cvtepu8_epi16函數

2)找到它所屬的指令集,visual-studio

3)找打它所須要的頭文件blog

 

4)在CMakeLists.txt文件中添加get

  set(CMAKE_CXX_FLAGS "-msse4 ${CMAKE_CXX_FLAGS}")
 5)在源文件裏添加
  #include <smmintrin.h>
相關文章
相關標籤/搜索