Visual Studio C++ 2008/2010 是否_mm_malloc
正式支持?它在中定义,malloc.h
但我在 MSDN 库中找不到它的描述。
问问题
7460 次
4 回答
4
不直接回答您的问题,但我认为您应该使用_aligned_malloc
. 如果我的理解是正确的,_mm_malloc
是针对英特尔编译器的。
于 2010-07-22T07:15:43.860 回答
2
_mm_malloc/_mm_free
在 Visual Studio 2013 中使用<malloc.h>
标头支持。
于 2015-06-16T20:38:07.450 回答
0
See Equivalent C code for _mm_ type functions and, more distantly related, How to allocate aligned memory only using the standard library?
于 2011-01-19T19:10:13.043 回答
0
Doesn't memalign() in <malloc.h>
solve this? The man-page says it's obsolete, but ...
于 2011-01-19T19:29:52.013 回答