Tagged Questions

Advanced Vector Extensions (AVX) is an extension to the x86 instruction set architecture for microprocessors from Intel and AMD.

learn more… | top users | synonyms

11
votes
10answers
488 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 ...
10
votes
3answers
120 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 ...
6
votes
2answers
1k views

Which assemblers currently support the AVX instruction set?

I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this question), but since I ...
4
votes
2answers
134 views

How can I exchange the low 128 bits and high 128 bits in a 256 bit AVX (YMM) register

I am porting SSE SIMD code to use the 256 bit AVX extensions and cannot seem to find any instruction that will blend/shuffle/move the high 128 bits and the low 128 bits. The backing story: What ...
4
votes
1answer
933 views

How to force gcc to use all SSE (or AVX) registers?

I'm trying to write some computationally intensive code for Windows x64 target, with SSE or the new AVX instructions, compiling in GCC 4.5.2 and 4.6.1, MinGW64 (TDM GCC build, and some custom build). ...
4
votes
1answer
386 views

Using AVX instructions disables exp() optimization?

I am writing a feed forward net in VC++ using AVX intrinsics. I am invoking this code via PInvoke in C#. My performance when calling a function that calculates a large loop including the function ...
3
votes
1answer
184 views

Does VS2010 SP1 support only part of the AVX instruction set?

Microsoft states VS2010 supports the full set of AVX instructions: http://blogs.msdn.com/b/vcblog/archive/2009/11/02/visual-c-code-generation-in-visual-studio-2010.aspx ... In VS2010 release, all ...
3
votes
3answers
241 views

developing for new instruction sets

Intel is set to release a new instruction set called AVX, which includes an extension of SSE to 256-bit operation. That is, either 4 double-precision elements or 8 single-precision elements. How ...
2
votes
1answer
50 views

How are AVX registers handled by the common calling conventions?

I could not find any document defining how YMM registers are handled by the caller and by the callee. To focus my question, here is what I would like to know: Which YMM registers must be restored ...
2
votes
2answers
80 views

Non-temporal stores of portions of a packed double vector using SSE/AVX

This piggybacks on a previous question that I had regarding fanning out the individual elements of an __m256d vector to different memory locations (a scatter operation). My code stores a lot of data ...
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
1answer
451 views

Does Xcode 4 have support for AVX?

Before I spend time and money downloading Xcode 4, can anyone tell me whether it comes with a version of gcc (or any other compiler, e.g. LLVM) which supports the AVX instruction set on Sandy Bridge ...
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. ...
1
vote
1answer
83 views

Can I compile OpenCL code into ordinary, OpenCL-free binaries?

I am evaluating OpenCL for my purposes. It occurred to me that you can't assume it working out-of-the-box on either Windows or Mac because: Windows needs an OpenCL driver (which, of course, can be ...
1
vote
2answers
113 views

_mm_alignr_epi8 (PALIGNR) equivalent in AVX2

In SSE3, the PALIGNR instruction performs the following: PALIGNR concatenates the destination operand (the first operand) and the source operand (the second operand) into an intermediate ...
1
vote
1answer
60 views

Storing individual doubles from a packed double vector using Intel AVX

I'm writing code using the C intrinsics for Intel's AVX instructions. If I have a packed double vector (a __m256d), what would be the most efficient way (i.e. the least number of operations) to store ...
1
vote
1answer
99 views

Passing types containing SSE/AVX values

Let's say I have the following struct A { __m256 a; } struct B { __m256 a; float b; } Which of the following's generally better (if any and why) in a hard core loop? void f0(A a) { ... ...
1
vote
1answer
313 views

Using AVX CPU instructions

My c++ code uses SSE and now I want to improve it to support AVX when it is available, so I detect when AVX is available and call a function that uses AVX commands. I use Win7 SP1 + VS2010 SP1 and CPU ...
1
vote
1answer
170 views

What are the alignment restrictions on the new Haswell AVX “gather” instructions?

I'm looking at the AVX programming reference. The new Haswell instructions include some eagerly awaited "gather" loads. However, I can't figure out what the alignment restrictions are on the indexed ...
1
vote
1answer
362 views

How to align stack at 32 byte boundary in GCC?

I'm using MinGW64 build based on GCC 4.6.1 for Windows 64bit target. I'm playing around with the new Intel's AVX instructions. My command line arguments are -march=corei7-avx -mtune=corei7-avx -mavx. ...
1
vote
1answer
232 views

Overloading conflict with vector types __m128, __m256 in GCC

I've started playing around with AVX instructions on the new Intel's Sandy Bridge processor. I'm using GCC 4.5.2, TDM-GCC 64bit build of MinGW64. I want to overload operator<< for ostream to ...
0
votes
2answers
217 views

Can you use the the AVX instructions with an i5 2600K if your motherboard doesn't include a video card?

From everything I've read, the i5 2500K processor disables it's integrated graphics if it detects an external GPU. I've got a motherboard that doesn't have an integrated video port so I have to add a ...