Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用指令_mm_prefetch。MSDN指定它在头文件 mmintrin.h 中,但没有。我使用 Visual Studio 2012。
看起来像他们文档中的错误。我也找不到它<mmintrin.h>,但它似乎在<xmmintrin.h>.
<mmintrin.h>
<xmmintrin.h>
这在 VS2010 中编译:
#include <xmmintrin.h> int main() { _mm_prefetch(0,0); return 0; }