SSE3, Streaming Single Instruction Multiple Data Extensions 3, is the third iteration of the SSE instruction set for the (x86) architecture.
0
votes
1answer
265 views
C++ SSE3 instruction set not enabled
I'm trying to work up some hidden markov code in c++ using the HMMlib library from
http://www.cs.au.dk/~asand/?page_id=152
I am using an ubuntu 12.04, with gcc / g++ 4.6
My compile step ...
1
vote
0answers
72 views
SSSE3 Instruction PHADDSW not saturating [closed]
I am experimenting with SSSE3 (3x S), however I have been getting strange results on my machine (I7 ivy bridge) running OS X. The compiler is GCC 4.2;
Suppose the following pseudocode,
x = { 1, 1, 1, ...
1
vote
2answers
99 views
ROS (Robot Operating System) with SSSE3 flag
I started working with ROS lately and got stuck on one problem. I need to use some classes whick require SSE2, SSE3 and SSSE3 CPU extensions.
I tried to edit the manifest.xml file of my ROS Package ...
3
votes
1answer
168 views
Memory Access Violations When Using SSE Operations
I've been trying to re-implement some existing vector and matrix classes to use SSE3 commands, and I seem to be running into these "memory access violation" errors whenever I perform a series of ...
2
votes
1answer
127 views
Should I compile with -mssse3 in the presence of ASM SSSE3 code?
I have a question regarding compiling a build of x264 on GCC.
x264 has assembly code dealing with instruction sets such as SSE3 and SSSE3 and by default has auto-vectorization disabled in the ...
5
votes
2answers
899 views
Optimizing code using Intel SSE intrinsics for vectorization
This is my very first time working with SSE intrinsics. I am trying to convert a simple piece of code into a faster version using Intel SSE intrinsic (upto SSE4.2). I seem to encountering a number of ...
8
votes
2answers
989 views
Sum reduction using SSE2 on Intel
I am trying to find sum reduction of 32 elements (each 1 byte data) on an Intel i3 processor. I did this:
s=0;
for (i=0; i<32; i++)
{
s = s + a[i];
}
However, its taking more time, since ...
2
votes
1answer
321 views
Sum of the four 32bits elements of a _m128 vector
I'm using intrinsics to optimize a program of mine. But now I would like to sum the four elements that are in a __m128 vector in order to compare the result to a floating point value. For instance, ...
1
vote
1answer
181 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
2k 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.
9
votes
1answer
240 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 ...
2
votes
2answers
225 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 ...