Advanced Vector Extensions (AVX) is an extension to the x86 instruction set architecture for microprocessors from Intel and AMD.
3
votes
1answer
104 views
6 element double precision vector matrix vector multiply in AVX
I need to do the following operation in double precision:
The numbers represent how the values are stored in memory. I want to implement this with AVX. Would it be best if I padded the columns of ...
4
votes
2answers
77 views
AVX convert 64 bit integer to 64 bit float
I would like to convert 4 packed 64 bit integers to 4 packed 64 bit floats using AVX. I've tried something like:
int_64t *ls = (int64_t *) _mm_malloc(256, 32);
ls[0] = a;
//...
ls[3] = d;
__mm256i ...
0
votes
1answer
52 views
Performing AVX integer operation
I'm trying to optimize some integer (_int64) operations using AVX. However, I can't even simple add operation. It keeps telling me illegal instruction. Pls can I be corrected on what i'm doing wrong? ...
0
votes
1answer
76 views
difference between Intel E7 and E5 Xeon models? [closed]
I'm researching the possibility to build a cluster of powerful machines geared towards HPC (FLOP) computation and therefore I have been reviewing the top Intel Xeon models and was surprise to discover ...
5
votes
2answers
123 views
AVX2 gather instructions - load address calculation
Looking at the AVX2 intrinsics documentation there are gathered load instructions such as VPGATHERDD:
__m128i _mm_i32gather_epi32 (int const * base, __m128i index, const int scale);
What isn't ...
1
vote
1answer
88 views
Enable AVX instructions with mex using gcc 4.6.1
I'd like to mess around with some AVX intrinsic functions. I'd like gcc to use AVX exclusively if possible similar to /arch:AVX in visual studio. Is there a way to do this in gcc with mex?
I tried ...
-2
votes
0answers
61 views
Multithread with SSE/AVX or GPU Cuda [closed]
at the moment im programming in C/c++ with multiple threads and SSE support.
I need more speed for calculation that could be parallel ( Neuronal Network ).
What what you think is better now and in ...
0
votes
1answer
93 views
Intel AVX : Why is there no 256-bits version of dot product for double precision floating point variables? [closed]
In another question on SO we tried (and succeeded) to find a way to replace the AVX missing instruction:
__m256d _mm256_dp_pd(__m256d m1, __m256d m2, const int mask);
Anyone knows the reason why ...
2
votes
1answer
243 views
How to use Fused Multiply-Add (FMA) instructions with SSE/AVX
I have learned that some Intel/AMD CPUs can do simultanous multiply and add with SSE/AVX: FLOPS per cycle for sandy-bridge and haswell SSE2/AVX/AVX2.
I like to know how to do this best in code and I ...
3
votes
2answers
166 views
Assembly code/AVX instructions for multiplication of complex numbers. (GCC inline assembly)
we're running a scientific program and we would like to implement AVX features.
The whole program (written in Fortran+C) is going to be vectorized and at the moment I'm trying to implement complex ...
2
votes
1answer
170 views
SIMD math libraries for SSE and AVX
I am looking for SIMD math libraries (preferably open source) for SSE and AVX. I mean for example if I have a AVX register v with 8 float values I want sin(v) to return the sin of all eight values at ...
1
vote
1answer
634 views
FLOPS per cycle for sandy-bridge and haswell SSE2/AVX/AVX2
I'm confused on how many flops per cycle per core can be done with Sandy-Bridge and Haswell.
As I understand it with SSE it should be 4 flops per cycle per core for SSE and 8 flops per cycle per core ...
2
votes
1answer
151 views
reduction with OpenMP with SSE/AVX
I want to do a reduction on an array using OpenMP and SIMD. I read that a reduction in OpenMP is equivalent to:
inline float sum_scalar_openmp2(const float a[], const size_t N) {
float sum = ...
0
votes
0answers
92 views
Multiplication with AVX
Please this is my first time of using AVX and I'm trying to perform a simple multiplication on double precision numbers but I'm not getting all results correct.
I get just the first 4 results and the ...
4
votes
2answers
172 views
cpu dispatcher for visual studio for AVX and SSE
I work with two computers. One without AVX support and one with AVX. It would be convenient to have my code find the instruction set supported by my CPU at run-time and choose the appropriate code ...
1
vote
1answer
120 views
Scatter/Gather in Xeon Phi
I was referring to Intel's manual on the Xeon Phi instruction set and wasn't able to understand how the scatter/gather instructions work.
Suppose if I have the following vector of doubles:
A-> ...
1
vote
1answer
110 views
Permutation in Intel Xeon Phi
Suppose I have the following 4 vectors of doubles in Xeon Phi registers:
A-> |a8|a7|a6|a5|a4|a3|a2|a1|
B-> |b8|b7|b6|b5|b4|b3|b2|b1|
C-> |c8|c7|c6|c5|c4|c3|c2|c1|
D-> ...
1
vote
1answer
52 views
loaddup_pd/unpacklo_pd on Xeon Phi
If I have the following doubles in a 512-wide SIMD vector, as in a Xeon Phi register:
m0 = |b4|a4|b3|a3|b2|a2|b1|a1|
is it possible to make it into:
m0_d = |a4|a4|a3|a3|a2|a2|a1|a1|
using a ...
1
vote
1answer
57 views
zgemm on Intel's MIC
I have to accomplish the following using MIC's 512-bit vector units:
M->|b4|a4|b3|a3|b2|a2|b1|a1|
I->|d4|c4|d3|c3|d2|c2|d1|c1|
O-> O + ...
1
vote
1answer
42 views
What is the quickest way to perform a function equivalent to _mm_loaddup_pd in avx?
I want to be able to do the following, if I have the following doubles in memory (in sequential order):
A-> a1| b1| a2| b2
__m256d r1,im1;
/*Perform operation here*/
r1-> |a2|a2|a1|a1|
im1-> ...
0
votes
0answers
103 views
How to store lower or higher values from AVX/AVX2(YMM) register to memory like the SSE movlps/movhps does?
Is there any existing instructions which could store lower or higher values from a 256 bit AVX/AVX2(YMM) register to memory address, just like the SSE instruction movlps/movhps does?
Or is there any ...
-2
votes
1answer
243 views
gcc doesn't want to use AVX on mac
So I have this brand new mac book pro with intel core I7 processor and sysctl machdep.cpu.features giving
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 ...
6
votes
1answer
72 views
How can I exchange the middle two 64 bits in a 256 bit AVX(YMM) register
Is there any way to exchange the middle two 64 bits in a 256 bit AVX(YMM) register?
I know we can leverage VPERM2F128 to swap the low 128 and high 128 bits, and vshufps seems could only work inside ...
4
votes
3answers
193 views
Have different optimizations (plain, SSE, AVX) in the same executable with C/C++
I'm developing optimizations for my 3D calculations and I now have:
a "plain" version using the standard C language libraries,
an SSE optimized version that compiles using a preprocessor #define ...
1
vote
1answer
141 views
SIMD-able code?
What is the strict definition of what code can utilise SIMD instruction set? Is it anything where you can run calculations in parallel?
So if I had:
for(int i=0; i<100; i++){
sum += array[i];
...
2
votes
1answer
250 views
Scatter intrinsics in AVX
I can't find them in the Intel Intrinsic Guide v2.7. Do you know if AVX or AVX2 instruction sets support them?
2
votes
2answers
145 views
Explicit simd code in D
Is it possible to do it now in D out of the box ? I'm using LDC2 compiler if it can help.
I'm interested using AVX intrinsics.
2
votes
0answers
67 views
Why two bitwise or AVX instructions?
In AVX there are two instructions to do a bitwise-or VORPD and VORPS. The docs say:
VORPD (VEX.256 encoded version)
DEST[63:0] <- SRC1[63:0] BITWISE OR SRC2[63:0]
DEST[127:64] <- SRC1[127:64] ...
6
votes
1answer
403 views
AVX VMOVDQA slower than two SSE MOVDQA?
While I was working on my fast ADD loop (Speed up x64 assembler ADD loop), I was testing memory access with SSE and AVX instructions. To add I have to read two inputs and produce one output. So I ...
3
votes
0answers
134 views
How do I disable avx instructions on a linux computer? [closed]
Or more specifically, how do I ensure that /proc/cpuinfo and the CPUID opcode do not show that AVX is enabled?
(For context, there is a bug on some Amazon EC2 instances, where AVX is falsely reported ...
0
votes
2answers
196 views
horizontal sum of 8 packed 32bit floats
If I have 8 packed 32-bit floating point numbers (__m256), what's the fastest way to extract the horizontal sum of all 8 elements? Similarly, how to obtain the horizontal maximum and minimum? In other ...
0
votes
1answer
108 views
Minimum of signed/unsigned integers using AVX
I was looking through the AVX instruction guide and though there are load, store and permute operations for 32-bit integer values, other operations such as determining minimum or maximum values, or ...
2
votes
2answers
129 views
How to set all elements in a __m256d to, say, the 3rd element of another __m256d?
With 4 packed float (__m128), I can use the SSE intrinsic
__m128 X;
__m128 H = _mm_shuffle_ps(X,X,_MM_SHUFFLE(3,3,3,3));
to set all elements of H to the third element of X (is this the fastest ...
0
votes
0answers
265 views
How to convert int64_t to m128i? [closed]
End goal here is to generate very large numbers of Fibonacci. The logic isn't terribly relevant to the questions, suffice to say that I'll be adding very large numbers.
I decided to try using SSE to ...
0
votes
1answer
135 views
mfpmath option to MinGW (or even gcc)
Does the -march=corei7-avx -mtune=corei7-avx or -march=corei7 -mtune=corei7 -mavx command line options to MinGW with the -mfpmath=sse command line option (or even with -mfpmath=both) enables using of ...
1
vote
1answer
158 views
gcc options to use i87, AVX simultaneously but nor SSE
When compiled for processor that support AVX extension (say -m64 -march=corei7-avx -mtune=corei7-avx is applicable), does it make sense to use -mfpmath=both -mavx keys at the same time? Does not it so ...
2
votes
1answer
195 views
valarray on aligned memory for SSE / AVX
Is there a way to ensure valarray uses aligned memory so it could be vectorized with SSE and AVX? As far as I know the STL doesn't guarantee alignment, and you can not pass an allocator to valarray. ...
5
votes
1answer
79 views
Equivalent of SSE unpacklo_ps/unpackhi_ps in AVX (for doubles)
In SSE, if I have a 128-bit register containing 4 floats i.e.
A = a b c d ('a','b','c','d' are floats and 'A' is a 128-bit SSE register)
and
B = e f g h
then if I want
C = a e b f
I can ...
1
vote
2answers
152 views
GCC equivalent for m256_f32
I've got AVX C++ code like this, that compiles fine under Visual Studio 2010:
#include <immintrin.h>
#include <iostream>
int main() {
float data[] = {0, 1, 2, 3, 4, 5, 6, 7};
...
2
votes
2answers
569 views
Intel SSE and AVX Examples and Tutorials
Is there any good C/C++ tutorials or examples for learning Intel SSE and AVX instructions?
I found few on Microsoft MSDN and Intel sites, but it would be great to understand it from the basics..
4
votes
1answer
265 views
How to efficiently combine comparisons in SSE?
I am trying to convert the following code to SSE/AVX:
float x1, x2, x3;
float a1[], a2[], a3[], b1[], b2[], b3[];
for (i=0; i < N; i++)
{
if (x1 > a1[i] && x2 > a2[i] && ...
1
vote
1answer
154 views
Reverse a AVX register containing doubles using a single AVX intrinsic
If I have an AVX register with 4 doubles in them and I want to store the reverse of this in another register, is it possible to do this with a single intrinsic command?
For example: If I had 4 floats ...
2
votes
1answer
454 views
Clang produces slower code when AVX is enabled?
I use Xcode 4.5.2 with "Apple LLVM Compiler 4.1" (Clang).
I tried to compile a code which heavily relies on SSE intrinsics with AVX enabled (no _mm256* functions and no __m256 variables yet) and got ...
0
votes
2answers
320 views
How to sum __m256 horizontally?
I would like to horizontally sum the components of a __m256 vector using AVX instructions.
In SSE I could use
_mm_hadd_ps(xmm,xmm);
_mm_hadd_ps(xmm,xmm);
to get the result at the first component of ...
3
votes
2answers
221 views
Is _mm_broadcast_ss faster than _mm_set1_ps?
Is this code
float a = ...;
__m256 b = _mm_broadcast_ss(&a)
always faster than this code
float a = ...;
_mm_set1_ps(a)
?
What if a defined as static const float a = ... rather than float a ...
2
votes
2answers
192 views
Union with __m256 and array of two __m128
Can I have a union like this
union eight_floats_t
{
__m256 a;
__m128 b[2];
};
eight_floats_t eight_floats;
to have an instant access to the two 128 bit parts of a 256 bit register?
...
3
votes
2answers
253 views
are __m128, __m128d, __m256, etc built-in types in C++?
The C++ standards distinguish between built-in types and struct or class types. For the latter it is allowed to overload operators, such as +, *=, or &, but not for built-in types, when the ...
2
votes
0answers
49 views
When should prefetch be used on modern machines? [duplicate]
Possible Duplicate:
Prefetching Examples?
In many cases prefetch instructions seem to slow performance on modern machines, because there are typically a few different hardware prefetch ...
3
votes
2answers
203 views
How to access components of the 256 bit ps vector
How to efficiently access the elements of the 256-bit vector? For example I calculated the dot product with
c = _mm256_dp_ps(a, b, 0xff);
How to access the value in c then? I need to get both high ...
2
votes
1answer
272 views
Beat the compiler
I'm trying to use Intel intrinsics to beat the compiler optimized code. Sometimes I can do it, other times I can't.
I guess the question is, why can I sometimes beat the compiler, but other times ...