Tagged Questions

Streaming SIMD Extensions (SSE) is the first generation of SIMD Intel's instruction sets available on modern x86-compatible CPUs. SSE offers single-precision floating point arithmetic and integer arithmetic (excluding division) and logical operations on packed or single operands of sizes from 8 to 64 bits.

learn more… | top users | synonyms

21
votes
5answers
924 views

Optimizing Array Compaction

Let's say I have an array k = [1 2 0 0 5 4 0] I can compute a mask as follows m = k > 0 = [1 1 0 0 1 1 0] Using only the mask m and the following operations Shift left / right And/Or ...
21
votes
3answers
4k views

Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?

I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, it is faster to take ...
15
votes
2answers
941 views

Common SIMD techniques

Where can I find information about common SIMD tricks? I have an instruction set and know, how to write non-tricky SIMD code, but I know, SIMD now is much more powerful. It can hold complex ...
11
votes
10answers
487 views

How to quickly count bits in a series of ints?

Update: Please read the code, it is NOT about counting bits in one int Is it possible to improve performance of the following code with some clever assembler? uint bit_counter[64]; void ...
11
votes
8answers
687 views

An SSE Stdlib-esque Library?

Generally everything I come across 'on-the-net' with relation to SSE/MMX comes out as maths stuff for vectors and matracies. However, I'm looking for libraries of SSE optimized 'standard functions', ...
11
votes
5answers
723 views

Is it possible to vectorize myNum += a[b[i]] * c[i]; on x86_64?

What intrinsics would I use to vectorize the following(if it's even possible to vectorize) on the x86_64? double myNum = 0; for(int i=0;i<n;i++){ myNum += a[b[i]] * c[i]; //b[i] = int, a[b[i]] ...
10
votes
3answers
116 views

Using AVX intrinsics instead of SSE does not improve speed — why?

I've been using Intel's SSE intrinsics for quite some time with good performance gains. Hence, I expected the AVX intrinsics to further speed-up my programs. This, unfortunately, was not the case ...
10
votes
3answers
145 views

adding the components of an SSE register

I want to add the four components of an SSE register to get a single float. This is how I do it now: float a[4]; _mm_storeu_ps(a, foo128); float x = a[0] + a[1] + a[2] + a[3]; Is there an SSE ...
10
votes
3answers
376 views

approximating log10[x^k0 + k1]

Greetings. I'm trying to approximate the function Log10[x^k0 + k1], where .21 < k0 < 21, 0 < k1 < ~2000, and x is integer < 2^14. k0 & k1 are constant. For practical purposes, you ...
10
votes
15answers
7k views

Using SSE instructions

I have a loop written in C++ which is executed for each element of a big integer array. Inside the loop, I mask some bits of the integer and then find the min and max values. I heard that if I use ...
10
votes
2answers
3k views

What is the meaning of “non temporal” memory accesses in x86

This is a somewhat low-level question. In x86 assembly there are two SSE instructions: MOVDQA xmmi, m128 and MOVNTDQA xmmi, m128 The IA-32 Software Developer's Manual says that the NT ...
9
votes
3answers
313 views

SSE micro-optimization instruction order

I have noticed that sometimes MSVC 2010 doesn't reorder SSE instructions at all. I thought I didn't have to care about instruction order inside my loop since the compiler handles that best, which ...
9
votes
5answers
423 views

Optimizing variable-length encoding

I've got a case where I need to compress a lot of often small values. Thus I compress them with a variable-length byte encoding (ULEB128, to be specific): size_t compress_unsigned_int(unsigned int n, ...
9
votes
3answers
396 views

std::fill does not turn into memset for POD types

I am expecting a std::fill on an continuous container, say std::vector, will automatically compiled to a call of memset. However, when I tried the following code #include <vector> #include ...
9
votes
5answers
884 views

Can one construct a “good” hash function using CRC32C as a base

Given that SSE 4.2 (Intel Core i7 & i5 parts) includes a CRC32 instruction, it seems reasonable to investigate whether one could build a faster general-purpose hash function. According to this ...
9
votes
2answers
503 views

Is there any SSE2+ book?

Is there any book that teaches SSE starting with version 2? I couldn't find any and there aren't many tutorials/articles on the net. Thanks in advance!
9
votes
5answers
1k views

Benefits of x87 over SSE

I know that x87 has higher internal precision, which is probably the biggest difference that people see between it and SSE operations. But I have to wonder, is there any other benefit to using x87? ...
8
votes
3answers
124 views

SSE slower than FPU?

I have a large piece of code, part of whose body contains this piece of code: result = (nx * m_Lx + ny * m_Ly + m_Lz) / sqrt(nx * nx + ny * ny + 1); which I have vectorized as follows (everything ...
8
votes
2answers
628 views

Aligned types and passing arguments by value

Passing aligned types or structures with aligned types by value doesn't work with some implementations. This breaks STL containers, because some of the methods (such as resize) take their arguments by ...
8
votes
5answers
761 views

What is the fastest way to test if a double number is integer (in modern intel X86 processors)

Our server application does a lot of integer tests in a hot code path, currently we use the following function: inline int IsInteger(double n) { return n-floor(n) < 1e-8 } This function is ...
8
votes
2answers
1k views

Getting started with SSE

I want to learn more about using the SSE. What ways are there to learn, besides the obvious reading the Intel® 64 and IA-32 Architectures Software Developer's Manuals ? Mainly I'm interested to work ...
7
votes
1answer
98 views

Can long integer routines benefit from SSE?

I'm still working on routines for arbitrary long integers in C++. So far, I have implemented addition/subtraction and multiplication for 64-bit Intel CPUs. Everything works fine, but I wondered if I ...
7
votes
3answers
129 views

Why is the compiler generating a push/pop instruction pair?

I compiled the code below with the VC++ 2010 compiler: __declspec(dllexport) unsigned int __cdecl __mm_getcsr(void) { return _mm_getcsr(); } and the generated code was: push ECX stmxcsr [ESP] ...
7
votes
1answer
244 views

reordering 3D vector triplets in column major order is slow

I'm having a lots of (x1,y1,z1),(x2,y2,z2),(x3,y3,z3) single precision vector triplets, and I want to reorder them, so (x1,y1,z1),(x2,y2,z2),(x3,y3,z3) becomes (x1,x2,x3,0,y1,y2,y3,0,z1,z2,z3,0) ...
7
votes
1answer
379 views

NEON vs Intel SSE - equivalence of certain operations

I'm having some trouble figuring out the NEON equivalence of a couple of Intel SSE operations. It seems that NEON is not capable to handle an entire Q register at once(128 bit value data type). I ...
7
votes
7answers
796 views

Speed up matrix multiplication by SSE (C++)

I need to run a matrix-vector multiplication 240000 times per second. The matrix is 5x5 and is always the same, whereas the vector changes at each iteration. The data type is float. I was thinking of ...
7
votes
1answer
347 views

How compilers treat SSE (or any) intrinsic functions?

A while ago I read somewhere that SSE intrinsic functions compile into efficient machine code because compilers treat them differently from ordinary functions. I am wandering how actually compilers do ...
7
votes
2answers
1k views

What is my compiler doing? (optimizing memcpy)

I'm compiling a bit of code using the following settings in VC++2010: /O2 /Ob2 /Oi /Ot However I'm having some trouble understanding some parts of the assembly generated, I have put some questions ...
7
votes
2answers
916 views

Fast 24-bit array -> 32-bit array conversion?

Quick Summary: I have an array of 24-bit values. Any suggestion on how to quickly expand the individual 24-bit array elements into 32-bit elements? Details: I'm processing incoming video frames in ...
7
votes
9answers
602 views

C/C++ usage of special CPU features

I am curious, do new compilers use some extra features built into new CPUs such as MMX SSE,3DNow! and so? I mean, in original 8086 there was even no FPU, so compiler that old cannot even use it, ...
7
votes
3answers
2k views

How do you populate an x86 XMM register with 4 identical floats from another XMM register entry?

I'm trying to implement some inline assembler (in C/C++ code) to take advantage of SSE. I'd like to copy and duplicate values (from an XMM register, or from memory) to another XMM register. For ...
7
votes
5answers
2k views

How do modern compilers use mmx/3dnow/sse instructions?

I've been reading up on the x86 instruction set extensions, and they only seem useful in some quite specific circumstances (eg HADDPD - (Horizontal-Add-Packed-Double) in SSE3). These require a certain ...
7
votes
2answers
1k views

Best resource for learning about prefetching a buffer in C on Intel/AMD 64 bit

I am interested in mastering prefetch-related functions such as _mm_prefetch(...) so when I perform operations that loop over arrays, the memory bandwidth is fully utilized. What are the best ...
7
votes
2answers
1k views

How to get GCC to use more than two SIMD registers when using intrinsics?

I am writing some code and trying to speed it up using SIMD intrinsics SSE2/3. My code is of such nature that I need to load some data into an XMM register and act on it many times. When I'm looking ...
6
votes
2answers
149 views

Vectorizing (SIMD) Tree operations

What are some general tips/pointers on vectorizing tree operations? Memory layout wise, algorithm wise, etc. Some domain specific stuff: Each parent node will have quite a few (20 - 200) child ...
6
votes
2answers
381 views

SSE vectorization of math 'pow' function gcc

I was trying to vectorize a loop that contains the use of the 'pow' function in the math library. I am aware intel compiler supports use of 'pow' for sse instructions - but I can't seem to get it to ...
6
votes
1answer
157 views

SSE program takes a lot longer on AMD than on Intel

I am working in the optimization of an algorithm using SSE2 instructions. But I have run into this problem when I was testing the performance: I) Intel e6750 Doing 4 times the non-SSE2 algorithm ...
6
votes
2answers
220 views

How would you write code for unsigned addition likely to be optimized into one SSE instruction?

In C or C++ how would you write code for unsigned addition of two arrays likely to be optimized, by say GCC, into one 128bit SSE unsigned addition instruction?
6
votes
2answers
229 views

Profiling SIMD Code

UPDATED - Check Below Will keep this as short as possible. Happy to add any more details if required. I have some sse code for normalising a vector. I'm using QueryPerformanceCounter() (wrapped in a ...
6
votes
2answers
205 views

64 bit features in a 32 bit application?

I have a 32 bit application which I plan to run on 64bit Windows 7. At this stage I cannot convert the entire application to 64 bit due to dependencies to thirdparty functionality. However, I would ...
6
votes
5answers
393 views

Most performant way to subtract one array from another

I have the following code which is the bottleneck in one part of my application. All I do is subtract on Array from another. Both of these arrays have more around 100000 elements. I'm trying to find a ...
6
votes
5answers
881 views

G++ SSE memory alignment on the stack

I am attempting to re-write a raytracer using Streaming SIMD Extensions. My original raytracer used inline assembly and movups instructions to load data into the xmm registers. I have read that ...
6
votes
5answers
760 views

SSE2: Double precision log function

I need open source (no restriction on license) implementation of log function, something with signature __m128d _mm_log_pd(__m128d); It is available in Intel Short Vector Math Library (part of ...
6
votes
3answers
830 views

Most efficient way to store 4 dot products into a contiguous array in C using SSE intrinsics

I am optimizing some code for an Intel x86 Nehalem micro-architecture using SSE intrinsics. A portion of my program computes 4 dot products and adds each result to the previous values in a contiguous ...
6
votes
3answers
616 views

SIMD (SSE) instruction for division in GCC

I'd like to optimize the following snippet using SSE instructions if possible: /* * the data structure */ typedef struct v3d v3d; struct v3d { double x; double y; double z; } tmp = { ...
6
votes
4answers
284 views

Flipping sign on packed SSE floats

I'm looking for the most efficient method of flipping the sign on all four floats packed in an SSE register. I have not found an intrinsic for doing this in the Intel Architecture software dev ...
6
votes
1answer
208 views

Combining prefixes in SSE

In SSE the prefixes 066h (operand size override) 0F2H (REPNE) and 0F3h (REPE) are part of the opcode. In non-SSE 066h switches between 32-bit (or 64-bit) and 16-bit operation. 0F2h and 0F3h are ...
5
votes
2answers
117 views

SSE intrinsics - comparison if/else optimization

I have been trying to optimize some code which handles raw pixel data. Currently the C++ implementation of the code is too slow, so I've been trying to make some grounds using SSE intrinsics (SSE/2/3 ...
5
votes
2answers
164 views

How do I perform 8 x 8 matrix operation using SSE?

My initial attempt looked like this (supposed we want to multiply) __m128 mat[n]; /* rows */ __m128 vec[n] = {1,1,1,1}; float outvector[n]; for (int row=0;row<n;row++) { for(int k ...
5
votes
4answers
156 views

Calling SSE code in managed code (alignment)

Here's my problem: We have a math library written in C++ that is heavily using SSE. We need to use that same math library in our the managed layer of our tools (which are written in C#). The problem ...

1 2 3 4 5 6