Tagged Questions

Streaming SIMD Extensions 2 is a SIMD instruction set available on modern x86-compatible CPUs. SSE2 is the one major upgrade to its predecessor SSE and to date the single most important feature set among the SSE family, as it is a "common denominator" to virtually all modern x86 CPUs and offers the most important general functionality. Later SSE revisions have much lower availability (as of 2010, 50-80%) and add fewer commonly useful features.

learn more… | top users | synonyms

9
votes
4answers
1k views

Check if Computer supports SSE2 in c++

How do I check if a computer supports SSE2 in C++, I need to do that prior installing a software that needs the support for it. Any idea? Thank you. Edit from what I understand, I came up with ...
8
votes
1answer
793 views

Extended (80-bit) double floating point in x87, not SSE2 - we don't miss it?

I was reading today about researchers discovering that NVidia's Phys-X libraries use x87 FP vs. SSE2. Obviously this will be suboptimal for parallel datasets where speed trumps precision. However, the ...
8
votes
4answers
376 views

numpy calling sse2 via ctypes

In brief, I am trying to call into a shared library from python, more specifically, from numpy. The shared library is implemented in C using sse2 instructions. Enabling optimisation, i.e. building the ...
6
votes
1answer
3k views

SSE2 option in Visual C++ (x64)

I've added x64 configuration to my C++ project to compile 64-bit version of my app. Everything looks fine, but compiler gives the following warning: `cl : Command line warning D9002 : ignoring ...
5
votes
3answers
964 views

SIMD: Why is the SSE RGB to YUV color conversion about the same speed as the c++ implementation?

I've just tried to optimize an RGB to YUV420 converter. Using a lookup table yielded a speed increase, as did using fixed point arithmetic. However I was expecting the real gains using SSE ...
4
votes
2answers
123 views

SSE2 code optimization

I am using SSE2 intrinsics to optimize the bottlenecks of my application and have the following question: ddata = _mm_xor_si128(_mm_xor_si128( _mm_sll_epi32(xdata, 0x7u), _mm_srl_epi32(tdata, ...
4
votes
4answers
478 views

SIMD code runs slower than scalar code

elma and elmc are both unsigned long arrays, so is res1 and res2. unsigned long simdstore[2]; __m128i *p, simda, simdb, simdc; p = (__m128i *) simdstore; for (i = 0; i < _polylen; i++) ...
4
votes
6answers
344 views

How to optimize a cycle?

I have the following bottleneck function. typedef unsigned char byte; void CompareArrays(const byte * p1Start, const byte * p1End, const byte * p2, byte * p3) { const byte b1 = 128-30; ...
3
votes
1answer
187 views

Tweaking MIT's bitcount algorithm to count words in parallel?

I want to use a version of the well known MIT bitcount algorithm to count neighbors in Conway's game of life using SSE2 instructions. Here's the MIT bitcount in c, extended to count bitcounts > 63 ...
3
votes
1answer
557 views

Speeding up some SSE2 Intrinsics for color conversion

I'm trying to perform image colour conversion from YCbCr to BGRA (Don't ask about the A bit, such a headache). Anyway, this needs to perform as fast as possible, so I've written it using compiler ...
3
votes
4answers
357 views

How to make the following code faster

int u1, u2; unsigned long elm1[20], _mulpre[16][20], res1[40], res2[40]; 64 bits long res1, res2 initialized to zero. l = 60; while (l) { for (i = 0; i < 20; i += 2) { ...
3
votes
1answer
299 views

Add the upper and lower 64-bits of a 128-bit xmm register

I have two packed quadword integers in xmm0 and I need to add them together and store the result in a memory location. I can guarantee that the value of the each integer is less than 2^15. Right now, ...
2
votes
1answer
194 views

Strict aliasing and __m128i type

When using SSE2 intrinsic functions to do bit-wise operations, one has to cast pointers from int* to __m128i*. Does this code break strict aliasing rule? void bit_twiddling_func(int size, int const* ...
2
votes
1answer
128 views

Array of sse type: Segmentation Fault

today I tried to initialize an array of the sse type __m128d. Unfortunately it didn't work - why? Is it generally impossible to create arrays of sse types (since they are register types?). The ...
2
votes
1answer
150 views

Converting unsigned chars to float in assembly (to prepare for float vector calculations)

I am trying to optimize a function using SSE2. I'm wondering if I can prepare the data for my assembly code better than this way. My source data is a bunch of unsigned chars from pSrcData. I copy ...
2
votes
4answers
403 views

How To Store Values In Non-Contiguous Memory Locations With SSE Intrinsics?

I'm very new to SSE and have optimized a section of code using intrinsics. I'm pleased with the operation itself, but I'm looking for a better way to write the result. The results end up in three ...
2
votes
2answers
574 views

What's the difference between logical SSE intrinsics?

Is there any difference between logical SSE intrinsics for different types? For example if we take OR operation, there are three intrinsics: _mm_or_ps, _mm_or_pd and _mm_or_si128 all of which do the ...
2
votes
1answer
374 views

SSE2 Compiler Error

I'm trying to break into SSE2 and tried the following example program: #include "stdafx.h" #include <emmintrin.h> int main(int argc, char* argv[]) { __declspec(align(16)) long mul; // ...
1
vote
0answers
43 views

Xcode4: can't compile sse2 assemble via nasm for x86_64 architecture

Currently I'm switching a codec project from 32bit to 64 bit architecture in Xcode4, the *cpp part files are compiling well, but the .asm (all sse2 assemble) files seems can't be compiled into object ...
1
vote
1answer
98 views

SSE2 for double calculations with GCC

How can I use SSE2 in GCC? I want to work with double values. I search s.th. like this: http://vrm-vrm.blogspot.com/2009/10/gcc-intrinsics.html only for double values.
1
vote
0answers
107 views

Migrate SSE2 to Arm NEON intrinsincs

I have the following code in SSE2 intrinsincs. It processes input from a Kinect. __m128i md = _mm_setr_epi16((r0<<3) | (r1>>5), ((r1<<6) | (r2>>2) ), ((r2<<9) | ...
1
vote
2answers
118 views

SSE2 assembly-overflow using intrinsics

I am new to SSE and SSE2, and I wrote a small C sample (allocating two counters, one increasing other decreasing than adding the two), which is working as expected. I used intrinsics and Microsoft ...
1
vote
0answers
74 views

Can Visual Studio tell me the SSE2 register spill count of compiled code?

I do not have any real compiler knowledge, and I used to hand-code SSE2 functions for selected pieces of code. I know how to read the generated machine code, but largely unaware of the crazy ...
1
vote
2answers
289 views

SSE2 double multiplication slower than with standard multiplication

I'm wondering why the following code with SSE2 instructions performas the multiplication slower than the standard C++ implementation. Here is the code: m_win = ...
1
vote
2answers
77 views

Assembly code for optimized bitshifting of a vector

i'm trying to write a routine that will logically bitshift by n positions to the right all elements of a vector in the most efficient way possible for the following vector types: BYTE->BYTE, ...
1
vote
2answers
568 views

sse/sse2 double matrix float vector multiplication

I have to implement matrix-vector multiplication using sse/sse2. Vector and matrix are large. Matrix is double, vector is float. The point is that all calculations I have to do on floats - when I get ...
1
vote
1answer
415 views

Optimizing loop with few instructions(SSE2, SSE4) with TBB

I have a simple image processing related algorithm. Briefly, an image(mean) in float is subtracted by an 8-bit image the result is then save to an float image(dest) this function is mainly written by ...
1
vote
4answers
915 views

How to test if your Linux Support SSE2

Actually I have 2 questions: Is SSE2 Compatibility a CPU issue or Compiler issue? How to check if your CPU or Compiler support SSE2? I am using GCC Version: gcc (GCC) 4.5.1 When I tried to ...
1
vote
1answer
529 views

SSE2 instructions not working in inline assembly with C++

I have this function which uses SSE2 to add some values together it's supposed to add lhs and rhs together and store the result back into lhs: template<typename T> void simdAdd(T *lhs,T *rhs) { ...
1
vote
1answer
203 views

Finding a median using SSE2 instruction set

My input data is 16-bit data, and I need to find a median of 3 values using SSE2 instruction set. If I have 3 16-bits input values A, B and C, I thought to do it like this: D = max( max( A, B ), C ) ...
1
vote
3answers
149 views

Giving an instance of a class a pointer to a struct

I am trying to get SSE functionality in my vector class (I've rewritten it three times so far. :\) and I'm doing the following: #ifndef _POINT_FINAL_H_ #define _POINT_FINAL_H_ #include "math.h" ...
1
vote
4answers
630 views

What's the most efficient way to multiply 4 floats by 4 floats using SSE?

I currently have the following code: float a[4] = { 10, 20, 30, 40 }; float b[4] = { 0.1, 0.1, 0.1, 0.1 }; asm volatile("movups (%0), %%xmm0\n\t" "mulps (%1), %%xmm0\n\t" ...
0
votes
1answer
31 views

Translate GCC inline asm (SSE2, SSSE3) to MSVC intrinsics

I'm borrowing some code from the VLC to my video player, written in MSVC++ 2010, and cannot find equivalent to its inline asms, related to extracting decoded video frame from the GPU memory to the ...
0
votes
2answers
309 views

Visual Studio 2010 and SSE 4.2

I would like to know, what is necessary to set in Visual Studio 2010, to have SSE 4.2 enabled? I would like to use it because of optimized POPCNT... How can I test, if all settings are ok? thanks ...
0
votes
0answers
148 views

Which one is faster?

I am using SSE2 in gcc 4.4.3. In my program, I need to use say least (0 - 7) 8-bits of a 128-bit SIMD register. Please suggest a way in which I can retrieve the 8-bits quickly. I tried with ...
0
votes
1answer
60 views

Sorting tuples inside signed integers

I'm sorting tuples of 16+16 bits as 32bit integers with SSE2. There are only signed integer instructions for compare and min/max. I don't have a problem with the order for the higher part as its just ...
0
votes
1answer
201 views

GCC support for XMM registers badly broken?

Whenever I examine the assembly code produced by GCC for code that uses the __m128i type, I see what looks like a catastrophe. There's tons of redundant instructions that serve no purpose. And yet, ...
0
votes
1answer
319 views

64-bit specific simd intrinsic

I am using the following union declaration in SSE2. typedef unsigned long uli; typedef uli v4si __attribute__ ((vector_size(16))); typedef union { v4si v; uli data[2]; } uliv; ...
0
votes
1answer
401 views

boost::shared_array and aligned memory allocation

In Visual C++, I'm trying to dynamically allocate some memory which is 16-byte aligned so I can use SSE2 functions that require memory alignment. Right now this is how I allocate the memory: ...
0
votes
1answer
175 views

SSE2 instruction support with /CLR switch

Why isn't the SSE2 enhanced instruction set optimization available for C++ programs compiled with the /clr switch?
0
votes
4answers
675 views

implement SIMD in C++

I'm working on a bit of code and I'm trying to optimize it as much as possible, basically get it running under a certain time limit. The following makes the call... static affinity_partitioner ap; ...
0
votes
2answers
697 views

SSE2 - “The system cannot execute the specified program”

I recently developed a Visual C++ console application which uses inline SSE2 instructions. It works fine on my computer, but when I tried it on another, it returns the following error: The system ...
0
votes
3answers
932 views

SSE2 - 16-byte aligned dynamic allocation of memory

EDIT: This is a followup to SSE2 Compiler Error This is the real bug I experienced before and have reproduced below by changing the _mm_malloc statement as Michael Burr suggested: Unhandled ...
0
votes
1answer
173 views

Call a function lower in the script from a function higher in the script

I'm trying to come up with a way to make the computer do some work for me. I'm using SIMD (SSE2 & SSE3) to calculate the cross product, and I was wondering if it could go any faster. Currently I ...
-1
votes
2answers
383 views

SIMD code vs Scalar Code

The following loop is executed hundreds of times. elma and elmc are both unsigned long (64-bit) arrays, so is res1 and res2. unsigned long simdstore[2]; __m128i *p, simda, simdb, simdc; p = ...