Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
2k views

How to use VC++ intrinsic functions w/o run-time library

I'm involved in one of those challenges where you try to produce the smallest possible binary, so I'm building my program without the C or C++ run-time libraries (RTL). I don't link to the DLL ...
9
votes
1answer
146 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 ...
7
votes
1answer
350 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 ...
6
votes
2answers
284 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
832 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
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
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 ...
5
votes
2answers
62 views

SSE intrinsics cause normal float operation to return -1.#INV

I am having a problem with a SSE method I am writing that performs audio processing. I have implemented a SSE random function based on Intel's paper here: ...
5
votes
2answers
119 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
165 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
1answer
2k views

Is there a good reference for ARM Neon intrinsics?

The ARM reference manual doesn't go into too much detail into the individual instructions ( http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0348b/BABIIBBG.html ). Is there something ...
5
votes
4answers
2k views

How do I reorder vector data using ARM Neon intrinsics?

This is specifically related to ARM Neon SIMD coding. I am using ARM Neon instrinsics for certain module in a video decoder. I have a vectorized data as follows: There are four 32 bit elements in a ...
5
votes
6answers
937 views

Make compiler copy characters using movsd

I would like to copy a relatively short sequence of memory (less than 1 KB, typically 2-200 bytes) in a time critical function. The best code for this on CPU side seems to be rep movsd. However I ...
4
votes
2answers
124 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
2answers
347 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
358 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 ...
4
votes
1answer
1k views

gcc, simd intrinsics and fast-math concepts

Hi all :) I'm trying to get a hang on a few concepts regarding floating point, SIMD/math intrinsics and the fast-math flag for gcc. More specifically, I'm using MinGW with gcc v4.5.0 on a x86 cpu. ...
4
votes
1answer
144 views

Leading zeros calculation with intrinsic function

I'm trying to optimize some code working in an embedded system (FLAC decoding, Windows CE, ARM 926 MCU). The default implementation uses a macro and a lookup table: /* counts the # of zero MSBs in a ...
4
votes
6answers
345 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; ...
4
votes
2answers
552 views

SIMD/SSE newbie: simple image filtering

I'm very new to SIMD/SSE and I'm trying to do some simple image filtering (blurring). The code below filters each pixel of a 8-bit gray bitmap with a simple [1 2 1] weighting in horizontal direction. ...
4
votes
1answer
711 views

g++ SSE intrinsics dilemma - value from intrinsic “saturates”

I wrote a simple program to implement SSE intrinsics for computing the inner product of two large (100000 or more elements) vectors. The program compares the execution time for both, inner product ...
3
votes
1answer
188 views

C#: Using pragma intrinsic(sqrt, pow) in C#?

C++ Summary Using the #pragma intrinsic command in the preprocessor section of your code will greatly increase the speed of most math function calls. #pragma intrinsic(sqrt, pow) The above code ...
3
votes
2answers
109 views

SSE where can I find a translation guide from SSE intrinsics to assembler

I need to program some stuff in SSE2 assembler. All I see though are intrinsics. I've been looking in vain for a translation table from intrinsics to assembler. Because I don't want to play a ...
3
votes
2answers
125 views

What do I do about a FORTRAN intrinsic that was not part of the standard?

I'm trying to get a legacy FORTRAN code working by building it from source using gfortran. I have finally been able to build it successfully, but now I'm getting an out-of-bounds error when it runs. ...
3
votes
4answers
282 views

“Custom intrinsic” function for x64 instead of inline assembly possible?

I am currently experimenting with the creation of highly-optimized, reusable functions for a library of mine. For instance, I write the function "is power of 2" the following way: template<class ...
3
votes
1answer
352 views

How to use NEON comparison (greater than or equal to) instruction?

How to use the NEON comparison instructions in general? Here is a case, I want to use, Greater-than-or-equal-to instruction? Currently I have a, int x; ... ... ... if(x >= 0) { .... } In ...
3
votes
1answer
153 views

Fast format conversion open source library

Can someone advise me open source format conversion library? Optimized for SSE, SSE2. Formats for conversion: I420, YUY2, RGB(16-bit, 32-bit). I found only VirtualDub Kasumi library.
3
votes
2answers
379 views

Why does my data not seem to be aligned?

I'm trying to figure out how to best pre-calculate some sin and cosine values, store them in aligned blocks, and then use them later for SSE calculations: At the beginning of my program, I create an ...
3
votes
2answers
1k views

intrinsic memcmp

According to the gcc docs, memcmp is not an intrinsic function of GCC. If you wanted to speed up glibc's memcmp under gcc, you would need to use the lower level intrinsics defined in the docs. ...
2
votes
1answer
30 views

Use both SSE2 intrinsics and gcc inline assembler

I have tried to mix SSE2 intrinsics and inline assembler in gcc. But if I specify a variable as xmm0/register as input then in some cases I get a compiler error. Example: #include <emmintrin.h> ...
2
votes
2answers
153 views

128-bit division intrinsic in Visual C++

I'm wondering if there really is no 128-bit division intrinsic function in Visual C++? There is a 64x64=128 bit multiplication intrinsic function called _umul128(), which nicely matches the MUL x64 ...
2
votes
3answers
128 views

Where can I find script that convert VC++ inline assembler to intrinsics?

I am porting inline assembler that use SSE commands to intrinsics. It takes much work to find appropriate intrinsic for assembler instruction. Somewhere on the Internet I saw a Python script that ...
2
votes
2answers
108 views

What's the best way to load 2 unaligned 64-bit values into an sse register with SSSE3?

There are 2 pointers to 2 unaligned 8 byte chunks to be loaded into an xmm register. If possible, using intrinsics. And if possible, without using an auxiliary register. Without pinsrd. (SSSE Core 2)
2
votes
1answer
79 views

Unexpected result from AVX _m256_unpack*_ps unpack intrinsic

I'm attempting to use the AVX intrinsic unpack instructions _m256_unpacklo_ps and _m256_unpackhi_ps to interleave 16 float values. The results I'm getting are strange, either because I'm not ...
2
votes
3answers
272 views

if/else statement in SSE intrinsics

I am trying to optimize a small piece of code with SSE intrinsics (I am a complete beginner on the topic), but I am a little stuck on the use of conditionals. My original code is: unsigned long c; ...
2
votes
9answers
326 views

How can I optimize this C++ code?

I'm trying improve performance for my function. Profiler points to the code at inner loop. Can I improve perfomance of that code, maybe using SSE intrinsics? void ...
2
votes
5answers
631 views

c++ SSE SIMD framework

Does anyone know an open-source C++ x86 SIMD intrinsics library? Intel supplies exactly what I need in their integrated performance primitives library, but I can't use that because of the copyrights ...
2
votes
2answers
239 views

How cast C++ class to intrinsic type

Basic C++ class question: I have simple code currently that looks like something like this: typedef int sType; int array[100]; int test(sType s) { return array[ (int)s ]; } What I want, is to ...
2
votes
2answers
253 views

How do I fake a user log in for unit testing purposes using fakeiteasy within asp.net mvc 2

I have just started learning and usingASP.NET MVC 2 and also getting more involved into unit testing my code. My question is broadly how to simulate a user log in by passing in credentials within my ...
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
789 views

SSE4.1 intrinsics compilation error on Mac

I'm having some trouble using SSE4.1 intrinsics on hardware that (I think) supports it. Can anyone tell me if I've missed something? Building the following code on a MacBookPro5,4 (Penryn): >g++ ...
2
votes
4answers
367 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
1answer
711 views

How to merge elements of 2 rows using NEON SIMD?

I have a A = a1 a2 a3 a4 b1 b2 b3 b4 c1 c2 c3 c4 d1 d2 d3 d4 I have 2 rows with me, float32x2_t a = a1 a2 float32x2_t b = b1 b2 From these how can I get a - float32x4_t result = b1 ...
2
votes
3answers
227 views

Data types for x86-64 processors

What are these data types for? __m64, __m128, __m256 ?
2
votes
3answers
419 views

Help with Assembly/SSE Multiplication

I've been trying to figure out how to gain some improvement in my code at a very crucial couple lines: float x = a*b; float y = c*d; float z = e*f; float w = g*h; all a, b, c... are floats. I ...
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
738 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. ...
2
votes
3answers
1k views

VC++ SSE intrinsic optimisation weirdness

I am performing a scattered read of 8-bit data from a file (De-Interleaving a 64 channel wave file). I am then combining them to be a single stream of bytes. The problem I'm having is with my ...
2
votes
4answers
1k views

x86 max/min asm instructions?

Are there any asm instructions that can speed up computation of min/max of vector of doubles/integers on Core i7 architecture? Update: I didn't expect such rich answers, thank you. So I see that ...

1 2