Tagged Questions

7
votes
1answer
376 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
1answer
3k views

Equivalent of InterlockedIncrement in Linux/gcc

It would be a very simple question (could be duplicated), but I was unable to find it. Win32 API provides a very handy set of atomic operations (as intrinsics) such as InterlockedIncrement which ...
6
votes
2answers
310 views

how to divide in neon intrinsics by a float number

First of all, sorry for my english is not perfect but i will try to explain my problem all i can. A little of background of what I'm doing is processing a image by four pixels at the time, this on a ...
6
votes
3answers
877 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
2answers
1k views

How to use the multiply and accumulate intrinsics in ARM Cortex-a8?

how to use the Multiply-Accumulate intrinsics provided by GCC? float32x4_t vmlaq_f32 (float32x4_t , float32x4_t , float32x4_t); Can anyone explain what three parameters I have to pass to this ...
6
votes
4answers
1k views

Dot product - SSE2 vs BLAS

What's my best bet for computing the dot product of a vector x with a large number of vectors y_i, where x and y_i are of length 10k or so. Shove the y's in a matrix and use an optimized s/dgemv ...
4
votes
2answers
375 views

Bilinear filter with SSE4.1 intrinsics

I am trying to figure out a reasonably fast bilinear filtering function just for one filtered sample at a time now as an exercise in getting used to using intrinsics - up to SSE41 is fine. So far I ...
4
votes
1answer
394 views

Do I get a performance penalty when mixing SSE integer/float SIMD instructions

I've used x86 SIMD instructions (SSE1234) in the form of intrinsics quite a lot lately. What I found frustrating is that the SSE ISA has several simple instructions that are available only for floats ...
2
votes
2answers
55 views

SSE Loading & Adding

Assume I have two vectors represented by two arrays of type double, each of size 2. I'd like to add corresponding positions. So assume vectors i0 and i1, I'd like to add i0[0] + i1[0] and i0[1] + ...
2
votes
4answers
426 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
4answers
387 views

Intrinsic function, cannot be defined (C)

I implemented a function called abs(). I get this error: Intrinsic function, cannot be defined What have I done wrong? I'm using Visual Studio 2005.
2
votes
3answers
235 views

Data types for x86-64 processors

What are these data types for? __m64, __m128, __m256 ?
2
votes
2answers
591 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
770 views

Intel AVX intrinsics: any compatibility library out?

Are there any Intel AVX intrinsics library out? I'm looking for something similar as 'sse2mmx.h' header which fall-backs to MMX intrinsics if SSE2 integer intrinsics are not available on compile time. ...
1
vote
2answers
93 views

Convert Intrinsic xmm register into uint8_t array[16]

How can I efficiently dump xmm register into uint8_t array[16]?
1
vote
1answer
103 views

Mode for _mm_cmpistrm SSE4.2 intrinsic

I'm trying to figure out how to set the "mode" flag for the _mm_cmpistrm SSE4.2 intrinsic. I have a regular C string (char*) that I am loading into an __m128i type with _mm_lddqu_si128. I was going to ...
1
vote
2answers
113 views

SSE2 value extraction problem

i want to extract the value(first word 16bits) from 128bit register, i got this command but this is not working.there will be some arithmetic operation after setting the value of a, than there will be ...
1
vote
3answers
265 views

does passing __m128i objects by reference to inline function cause these objects to be moved to stack?

I'm writing transpose function for 8x16bit vectors with SSE2 intrinsics. Since there are 8 arguments for that function (a matrix of 8x8x16bit size), I can't do anything but pass them by reference. ...
1
vote
2answers
2k views

How to use MSVC intrinsics to get the equivalent of this GCC code?

The following code calls the builtin functions for clz/ctz in GCC and, on other systems, has C versions. Obviously, the C versions are a bit suboptimal if the system has a builtin clz/ctz ...
0
votes
1answer
59 views

Trouble with using openmp with nested for loops and intrinsics

So I'm having a little trouble figuring out the best way parallelizing these for loops using openmp. I'm guessing that biggest speed up would come from parallelizing the middle loop like I do here: ...
0
votes
2answers
148 views

comparison with floats in neon intrinsics

I think this a silly problem but i tried for a day to resolve this with not luck, so here is. i have register of four vectors (float32x4), and i want to make some process on some of them and the ...
0
votes
2answers
88 views

Testing for builtins/intrinsics

I have some code that uses gcc intrinsics. I would like to include code in case the intrinsic is missing. How can I do this? #ifdef __builtin_ctzll does not work.