Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
153 views

How does _mm_mwait work?

How does _mm_mwait from pmmintrin.h work? (I mean not the asm for it, but action and how this action is taken in NUMA systems. The store monitoring is easy to implement only on bus-based SMP systems ...
4
votes
1answer
200 views

Is this code valid to check for SSE3?

Is the following code valid to check if a CPU supports SSE3? Using the IsProcessorFeaturePresent() function does apparently not work on Windows XP (see ...
2
votes
2answers
154 views

Compiling a gnu program without sse3

I'm compiling an app for a device where the architecture does not support sse beyond sse2, and was wondering is it possible to disable compiling with sse3 instructions from GNU autoconf generated ...
1
vote
1answer
98 views

Really basic SSE

I have a very simple program that I am trying to improve performance. One way that I know will help is to utilize SSE3 (since the machine that I am working supports this), but I have absolutely no ...
1
vote
2answers
1k views

How do I enable the SSE3/SSE4.1 instruction set in Visual Studio 2008?

I tried to follow: Project > Properties > Configuration Properties > C/C++ > Code Generation > Enable Enhanced Instruction Set But the only options I got were - SSE or SSE2. Thanks.