2
我想用SIMD來計算exponential
函數。我發現這個功能:https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_exp_ps&expand=2136我該如何使用SVML指令
我已經在我的代碼中包含了"immintrin.h"
,並且我的cpu也有一個SSE
的標誌。但gcc
正在抱怨error: ‘_mm_exp_pd’ was not declared in this scope
如何檢查SVML指令是否已啓用?
在安裝了英特爾OpenCL SDK運行時的系統上搜索svml時,出現了一些svml dll。我的猜測是,英特爾OpenCL使用SVML,即您可以通過OpenCL直接獲取SVML。 –
我還會提到[Agner Fog's Library - Vector Class Library(VCL)](http://www.agner.org/optimize/)。 – Royi