Tagged Questions
Single instruction, multiple data (SIMD) is the concept of processing several streams of data in parallel with a single stream of instructions. SIMD functionality is implemented in modern CPUs via extensions such as for example 3DNow, SSE, and AltiVec. To efficiently use SIMD instructions, data needs to be in structure-of-arrays form and should occur in longer streams. Naively "SIMD optimized" code frequently surprises by running slower than the original.
23
votes
2answers
1k views
Haskell math performance on multiply-add operation
I'm writing a game in Haskell, and my current pass at the UI involves a lot of procedural generation of geometry. I am currently focused on identifying performance of one particular operation (C-ish ...
21
votes
5answers
926 views
Optimizing Array Compaction
Let's say I have an array
k = [1 2 0 0 5 4 0]
I can compute a mask as follows
m = k > 0 = [1 1 0 0 1 1 0]
Using only the mask m and the following operations
Shift left / right
And/Or
...
19
votes
17answers
2k views
How fast can you make linear search?
I'm looking to optimize this linear search:
static int
linear (const int *arr, int n, int key)
{
int i = 0;
while (i < n) {
if (arr [i] >= key)
...
15
votes
2answers
942 views
Common SIMD techniques
Where can I find information about common SIMD tricks? I have an instruction set and know, how to write non-tricky SIMD code, but I know, SIMD now is much more powerful. It can hold complex ...
12
votes
8answers
640 views
Fastest way to compute distance squared
My code relies heavily on computing distances between two points in 3D space.
To avoid the expensive square root I use the squared distance throughout.
But still it takes up a major fraction of the ...
11
votes
5answers
723 views
Is it possible to vectorize myNum += a[b[i]] * c[i]; on x86_64?
What intrinsics would I use to vectorize the following(if it's even possible to vectorize) on the x86_64?
double myNum = 0;
for(int i=0;i<n;i++){
myNum += a[b[i]] * c[i]; //b[i] = int, a[b[i]] ...
10
votes
3answers
148 views
adding the components of an SSE register
I want to add the four components of an SSE register to get a single float. This is how I do it now:
float a[4];
_mm_storeu_ps(a, foo128);
float x = a[0] + a[1] + a[2] + a[3];
Is there an SSE ...
10
votes
3answers
377 views
approximating log10[x^k0 + k1]
Greetings. I'm trying to approximate the function
Log10[x^k0 + k1], where .21 < k0 < 21, 0 < k1 < ~2000, and x is integer < 2^14.
k0 & k1 are constant. For practical purposes, you ...
9
votes
3answers
314 views
SSE micro-optimization instruction order
I have noticed that sometimes MSVC 2010 doesn't reorder SSE instructions at all. I thought I didn't have to care about instruction order inside my loop since the compiler handles that best, which ...
8
votes
3answers
126 views
SSE slower than FPU?
I have a large piece of code, part of whose body contains this piece of code:
result = (nx * m_Lx + ny * m_Ly + m_Lz) / sqrt(nx * nx + ny * ny + 1);
which I have vectorized as follows (everything ...
8
votes
6answers
879 views
SIMD or not SIMD - cross platform
I need some idea how to write a C++ cross platform implementation of a few parallelizable problems in a way so I can take advantage of SIMD (SSE, SPU, etc) if available. As well as I want to be able ...
8
votes
2answers
1k views
Getting started with SSE
I want to learn more about using the SSE.
What ways are there to learn, besides the obvious reading the IntelĀ® 64 and IA-32 Architectures Software Developer's Manuals ?
Mainly I'm interested to work ...
7
votes
1answer
245 views
reordering 3D vector triplets in column major order is slow
I'm having a lots of (x1,y1,z1),(x2,y2,z2),(x3,y3,z3) single precision vector triplets, and I want to reorder them, so
(x1,y1,z1),(x2,y2,z2),(x3,y3,z3)
becomes
(x1,x2,x3,0,y1,y2,y3,0,z1,z2,z3,0)
...
7
votes
1answer
384 views
NEON vs Intel SSE - equivalence of certain operations
I'm having some trouble figuring out the NEON equivalence of a couple of Intel SSE operations. It seems that NEON is not capable to handle an entire Q register at once(128 bit value data type). I ...
7
votes
3answers
2k views
ARM Cortex-A8: Whats the difference between VFP and NEON
In ARM Cortex-A8 processor, I understand what NEON is, it is an SIMD co-processor.
But is VFP(Vector Floating Point) unit, which is also a co-processor, works as a SIMD processor? If so which one is ...
7
votes
3answers
397 views
c++ how to write code the compiler can easily optimize for SIMD?
i'm working in Visual Studio 2008 and in the project settings I see the option for "activate Extended Instruction set" which I can set to None, SSE or SSE2
So the compiler will try to batch ...
7
votes
2answers
917 views
Fast 24-bit array -> 32-bit array conversion?
Quick Summary:
I have an array of 24-bit values. Any suggestion on how to quickly expand the individual 24-bit array elements into 32-bit elements?
Details:
I'm processing incoming video frames in ...
7
votes
6answers
1k views
Taking advantage of SSE and other CPU extensions
Theres are couple of places in my code base where the same operation is repeated a very large number of times for a large data set. In some cases it's taking a considerable time to process these.
I ...
7
votes
2answers
1k views
How to get GCC to use more than two SIMD registers when using intrinsics?
I am writing some code and trying to speed it up using SIMD intrinsics SSE2/3. My code is of such nature that I need to load some data into an XMM register and act on it many times. When I'm looking ...
6
votes
2answers
150 views
Vectorizing (SIMD) Tree operations
What are some general tips/pointers on vectorizing tree operations? Memory layout wise, algorithm wise, etc.
Some domain specific stuff:
Each parent node will have quite a few (20 - 200) child ...
6
votes
1answer
600 views
Any Lisp extensions for CUDA?
I just noted that one of the first languages for the Connection-Machine of W.D. Hillis was *Lisp, an extension of Common Lisp with parallel constructs. The Connection-Machine was a massively parallel ...
6
votes
2answers
229 views
Profiling SIMD Code
UPDATED - Check Below
Will keep this as short as possible. Happy to add any more details if required.
I have some sse code for normalising a vector. I'm using QueryPerformanceCounter() (wrapped in a ...
6
votes
5answers
761 views
SSE2: Double precision log function
I need open source (no restriction on license) implementation of log function, something with signature
__m128d _mm_log_pd(__m128d);
It is available in Intel Short Vector Math Library (part of ...
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
3answers
617 views
SIMD (SSE) instruction for division in GCC
I'd like to optimize the following snippet using SSE instructions if possible:
/*
* the data structure
*/
typedef struct v3d v3d;
struct v3d {
double x;
double y;
double z;
} tmp = { ...
6
votes
4answers
285 views
Flipping sign on packed SSE floats
I'm looking for the most efficient method of flipping the sign on all four floats packed in an SSE register.
I have not found an intrinsic for doing this in the Intel Architecture software dev ...
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
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 ...
6
votes
5answers
2k views
Good portable SIMD library
can anyone recommend portable SIMD library that provides a c/c++ API, works on Intel and AMD extensions and Visual Studio, GCC compatible. I'm looking to speed up things like scaling a 512x512 array ...
5
votes
4answers
195 views
improve locality and decrease Cache pollution in a medical image reconstruction implementation
I'm doing a research for my University related to an Image reconstruction algorithm for medical usage.
I'm stuck in something up to 3 weeks, I need to improve the performance of the following code:
...
5
votes
5answers
1k views
SSE SIMD Optimization For Loop
I have some code in a loop
for(int i = 0; i < n; i++)
{
u[i] = c * u[i] + s * b[i];
}
So, u and b are vectors of the same length, and c and s are scalars. Is this code a good candidate for ...
5
votes
2answers
750 views
Storing two x86 32 bit registers into 128 bit xmm register
Is there any faster method to store two x86 32 bit registers in one 128 bit xmm register?
movd xmm0, edx
movd xmm1, eax
pshufd xmm0, xmm0, $1
por xmm0, xmm1
So if EAX is 0x12345678 and ...
5
votes
4answers
927 views
SIMD programming languages
In the last couple of years, I've been doing a lot of SIMD programming and most of the time I've been relying on compiler intrinsic functions (such as the ones for SSE programming) or on programming ...
5
votes
2answers
6k views
How to vectorize with gcc?
The v4 series of the gcc compiler can automatically vectorize loops using the SIMD processor some modern CPUs, such as the AMD Athlon or Intel Pentium/Core chips. How is this done?
5
votes
6answers
2k views
How much speed-up from converting 3D maths to SSE or other SIMD?
I am using 3D maths in my application extensively. How much speed-up can I achieve by converting my vector/matrix library to SSE, AltiVec or a similar SIMD code?
4
votes
4answers
100 views
C# Vectorized Array Addition
Is there anyway to "vectorize" the addition of elements across arrays in a SIMD fashion?
For example, I would like to turn:
var a = new[] { 1, 2, 3, 4 };
var b = new[] { 1, 2, 3, 4 };
var c = new[] ...
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
4answers
224 views
Multiply Large Complex Number Vector by Scalar efficiently C++
I'm currently trying to most efficiently do an in-place multiplication of an array of complex numbers (memory aligned the same way the std::complex would be but currently using our own ADT) by an ...
4
votes
2answers
126 views
Constant floats with SIMD
I've been trying my hand at optimising some code I have using microsoft's sse intrinsics. One of the biggest problems when optimising my code is the LHS that happens whenever I want to use a constant. ...
4
votes
3answers
545 views
Why does does SSE set (_mm_set_ps) reverse the order of arguments
I recently noticed that
_m128 m = _mm_set_ps(0,1,2,3);
puts the 4 floats into reverse order when cast to a float array:
(float*) p = (float*)(&m);
// p[0] == 3
// p[1] == 2
// p[2] == 1
// ...
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
341 views
indexing into an array with SSE
Suppose I have an array:
uint8_t arr[256];
and an element
__m128i x
containing 16 bytes,
x_1, x_2, ... x_16
I would like to efficiently fill a new __m128i element
__m128i y
with values ...
4
votes
4answers
479 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
5answers
232 views
What is the limit of optimization using SIMD?
I need to optimize some C code, which does lots of physics computations, using SIMD extensions on the SPE of the Cell Processor. Each vector operator can process 4 floats at the same time. So ideally ...
4
votes
4answers
265 views
Is SIMD Worth It? Is there a better option?
I have some code that runs fairly well, but I would like to make it run better. The major problem I have with it is that it needs to have a nested for loop. The outer one is for iterations (which ...
4
votes
2answers
551 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
6answers
813 views
C++ Adding 2 arrays together quickly
Given the arrays:
int canvas[10][10];
int addon[10][10];
Where all the values range from 0 - 100, what is the fastest way in C++ to add those two arrays so each cell in canvas equals itself plus ...
4
votes
2answers
542 views
Benefit of using multiple SIMD instruction sets simultaneously
I'm writing a highly parallel application that's multithreaded. I've already got an SSE accelerated thread class written. If I were to write an MMX accelerated thread class, then run both at the same ...
4
votes
3answers
912 views
transpose for 8 registers of 16-bit elements on SSE2/SSSE3
(I'm a newbie to SSE/asm, apologies if this is obvious or redundant)
Is there a better way to transpose 8 SSE registers containing 16-bit values than performing 24 unpck[lh]ps and 8/16+ shuffles and ...