Why can't I use _mm_sin_pd? [duplicate]

可紊 提交于 2019-12-11 09:33:08

问题


Specifics says:

__m128d _mm_sin_pd (__m128d a)
#include <immintrin.h>
CPUID Flags: SSE
Description
Compute the sine of packed double-precision (64-bit) floating-point elements in a expressed in radians, and store the results in dst.

But it seems it is not defined?


回答1:


This symbol has a blue header, that means it's part of SVML. Link against it to get the symbol, as the documentation requires it.

SVML will then dispatch the call to the most adequate implementation for your architecture.



来源:https://stackoverflow.com/questions/54078110/why-cant-i-use-mm-sin-pd

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!