This question already has answers here:
C++ error: ‘_mm_sin_ps’ was not declared in this scope

(3个答案)



how can I use SVML instructions [duplicate]

(1个答案)



Where is Clang's '_mm256_pow_ps' intrinsic?

(1个答案)


去年关闭。




Specifics说:
__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.

但是似乎不是defined吗?

最佳答案

该符号具有蓝色标题,表示它是SVML的一部分。根据文档要求链接到该符号以获取该符号。

然后,SVML将把调用分派(dispatch)到最适合您的体系结构的实现。

09-06 22:47