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 ...

learn more… | top users | synonyms

0
votes
1answer
37 views

On Mac OS X, is it more efficient to pass vectors by reference or by value?

Clang has a C/C++ extension that which allows you to treat vector values as first-class citizens: typedef double double4 __attribute__((ext_vector_type(4)); // easy assignment double4 a = {1, 2, 3, ...
1
vote
1answer
37 views

SSE2 instruction to typecast an integer register to short register and vice-versa

Is there any SSE2 instruction to typecast an integer register to short register and vice-versa? Please suggest.
0
votes
2answers
40 views

SSE2 instruction to load integers in reverse order

Is there any SSE2 instruction to load a 128bit int register from a int buffer in the reverse order ?
6
votes
1answer
157 views

Does gcc use Intel's SSE 4.2 instructions for text processing if available?

I read here that Intel introduced SSE 4.2 instructions for accelerating string processing. Quote from the article: The SSE 4.2 instruction set, first implemented in Intel's Core i7, provides ...
3
votes
1answer
60 views

Using SIMD in a Game Engine Math Library by using function pointers ~ A good idea?

I have been reading Game Engine Books since I was 14 (At that time I didn't understand a thing:P) Now quite some years later I wanted to start programming the Mathmatical Basis for my Game Engine. ...
0
votes
0answers
66 views

Matrix vectorization using SIMD

I'm trying to vectorized the following loop (only the inner) : for (int i =0; i<n; i++){ const int line = i * width; for (int j = 0; j < n; j++){ a[line + j] = 3; } } but ...
1
vote
1answer
38 views

Non-Homogenous Comparison using SIMD

Is it possible to do non-homegenous (two datatypes which are not the same) comparison using SIMD instructions (intrinsics) , specifically in SSE2 uptil SSE4.x instruction set? . i.e. float and double? ...
-2
votes
1answer
59 views

extract a _m128 variable to float

float myfunction ( P b1, P b2, int dimention ) { __m128 v_b1,v_b2,v_b3; int j=0; for (int i=0; i<dimention/4; i++) { v_b1=_mm_load_ps(b1.c +j); ...
1
vote
2answers
59 views

SIMD and Difference between packed and scalar double precision

I am reading Intel's intrinsics guide while implementing SIMD support. I have a few confusions and my questions are as below. __m128 _mm_cmpeq_ps (__m128 a, __m128 b) documentation says it is used ...
0
votes
2answers
64 views

segmentation fault in programm with SIMD commands

What is wrong here? When I run the program, it says, Segmentation Fault (Core Dumped). I have used some SIMD commands. float function ( Point p1, Point p2, int dim ) { int k; float ...
5
votes
2answers
118 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 ...
0
votes
0answers
38 views

libjpeg-turbo in android app not using SIMD

I successfully compiled libjpeg-turbo libraries in my android app following the recipe here: libjpeg-turbo for android. Trying to assess the performance improvement of NEON SIMD instructions in the ...
3
votes
0answers
123 views

How to get Visual C++ to vectorize this loop (error code 1200)?

I'm trying to have VC++ 2012 auto-vectorize a loop that looks a bit like this (there are actually interesting computations going on, but they're elided for the purpose of making the question as to the ...
0
votes
1answer
89 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 ...
9
votes
1answer
145 views

Block Matching optimization using x86/x64 Streaming SIMD Extension

This is going to be the very first SO Question I'm posting! std::cout << "Hello mighty StackOverflow!" << std::endl; I'm trying to optimize a "Block Matching" implementation for ...
0
votes
0answers
86 views

x86-64 vectorised integer array comparison/ lookup table

I am trying to write a look up table of int keys to int objects. The keys are integers in the range of 0 to MAX_INT and the objects are in the range of 0 to 31. So an int key would map to any of the ...
0
votes
0answers
193 views

ARM vectorization Qualcomm ARMv7/Cortex-A8 versus Tegra Cortex-A9

I am applying some vectorization to algorithms, running on ARM-Android. I begin development with my own phone (HTC Desire S, CPU Snapdragon MSM8255). I have vectorized 2 algorithms. First works with ...
3
votes
1answer
80 views

SSE rms calculation

I want to calculation the rms with the Intel sse intrinsic. Like this: float rms( float *a, float *b , int l) { int n=0; float r=0.0; for(int i=0;i<l;i++) { ...
0
votes
0answers
59 views

ARM NEON count compare result

I need to make some parallel compare under uint16x8_t vectors, and increment some local variable (counter) according to it, for example +8 increment, if all elements of vector compared as true. I ...
1
vote
2answers
118 views

iOS BLAS - Accelerate framework poor matrix multiplication performance

I'm implementing a tangent distance based OCR solution for the iPhone, which heavily relies on fast multiplication of floating-point matrices of size 253x7. For the proof of concept, I've implemented ...
3
votes
2answers
102 views

Extract non-zero values from _m128i register with SSE

I have to extract non-zero values of an __m128i register. For example I have a vector with eight unsigned shorts. __m128i vector {40, 0, 22, 0, 0, 0, 0, 8} I want to extract the 40, 22 and 8 ...
1
vote
1answer
74 views

Using XMVECTOR from DirectXMath as a class member causes a crash only in Release Mode?

I've been trying to use XMVECTOR as a class member for a bounding box, since I do a lot of calculations, but I use the XMFLOAT3 only once per frame, so the bounding box has a method that gives me it's ...
2
votes
1answer
139 views

MMX v/s SSE2 Performance Comparison

Problem : I converted a MMX to code to corresponding SSE2 code. And I expected almost 1.5x-2x speedup. But both took exactly same time. Why is it? Scenario: I am learning SIMD instruction set and ...
2
votes
1answer
162 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 ...
8
votes
2answers
153 views

Fast Vector Math in .NET - What are the options? [closed]

My 3D graphics software, written in C# using SlimDX, does a lot of vector operations on the CPU. (In this specific situation, it is not possible to offload the work to the GPU). How can I make my ...
0
votes
0answers
12 views

About equation using neon

l am new neon beginner,and l've write some simple neon code. Yesterday l see one equation,such as:X(i,j) = X(i-1,j)+X(i+1,j)+X(i,j+1)+X(i,j+1)/c and i+(n+2)*j; l try to convert it to neon,such as: ...
0
votes
1answer
80 views

NEON output generated by the simulator regarding (pipeline information, stalls, execution cycles) not clear

I have some problem understanding the output of NEON simulator. The output generated is cryptic and there is no proper documentation for understanding the simulator output. for example : In the ...
6
votes
3answers
245 views

Can this function be optimized using SIMD?

Profiling suggests that this function here is a real bottle neck for my application: static inline int countEqualChars(const char* string1, const char* string2, int size) { int r = 0; for ...
0
votes
2answers
95 views

Summing 3 vectors and get the result in neon

I'm trying to sum d0,d1,d2 + d3,d4,d5+ d6,d7,d8. I don't know the best instruction for that and then take the average by 9. I know how to do the averaging using approximation, but summing those lanes, ...
-1
votes
1answer
70 views

arm neon instruction [closed]

I have some code and, I want to use Neon instruction to change it, but I really don't know how to complete it... Can anyone help me? void add(int n,float *a,float *b,float t) { int i, size = ...
4
votes
0answers
127 views

SSE _mm_load_pd works while _mm_store_pd segfaults

I am trying to learn the ropes of SSE intrinsics in C. I have a piece of code where I load a two-component vector of double data, add something to it and then attempt to store it back to memory. ...
0
votes
1answer
79 views

NEON simple vector assignment intrinsic?

Having r1,r3 and r4 of type uint32x4_t loaded into NEON registers I have the following code: r3 = veorq_u32(r0,r3); r4 = r1; r1 = vandq_u32(r1,r3); r4 = veorq_u32(r4,r2); r1 = ...
5
votes
2answers
182 views

Fast counting the number of equal bytes between two arrays

I wrote the function int compare_16bytes(__m128i lhs, __m128i rhs) in order to compare two 16 byte numbers using SSE instructions: this function returns how many bytes are equal after performing the ...
3
votes
2answers
222 views

ARM NEON SIMD version 2

What is the difference between NEON SIMD and NEON SIMD version 2 as in Cortex A15?
1
vote
1answer
153 views

How to load a sliding diagonal vector from data stored column-wise with SSE

The sliding diagonal vector contains 16 elements, each one an 8-bit unsigned integer. Without SSE and a bit simplified it would have looked like this in C: int width=1000000; // a big number uint8_t ...
0
votes
2answers
193 views

SQRT vs RSQRT vs SSE _mm_rsqrt_ps Benchmark

I have not found any clear benchmark about this subject so I made one. I will post it here in case anybody is looking for this like me. I have one question though. Isn't SSE supposed to be 4 times ...
1
vote
1answer
80 views

_mm_set_epi8 - what does “set” mean?

What does the _mm_set_epi8 do? I'm reading the documentation but I can't understand it, what is r0..r15?
3
votes
1answer
129 views

How can I use SIMD to accelerate XOR two blocks of memory?

I want to XOR two blocks of memory as quickly as possible, How can I use SIMD to accelerate it? My original code is below: void region_xor_w64( unsigned char *r1, /* Region 1 */ ...
0
votes
0answers
27 views

How to perform boolean operaions with gcc vectors like the normal value?

For a normal value, 1 is used to represent true while 0 for false: float a = 1.0f; float b = 2.0f; float c = (a > b); // this will be 0.0f But for a vector, 1111...111(32 binary 1s) is used to ...
0
votes
4answers
156 views

SIMD intrinsics - are they usable on gpus?

I'm wondering if I can use SIMD intrinsics in a GPU code like a CUDA's kernel or openCL one. Is that possible?
-2
votes
1answer
239 views

Run Length Encoding - SIMD

I am trying to optimise the run length coding. I was thinking of implementing it in SIMD. I spent a few hours working on the algo but couldn't proceed much. Is it worth giving it a shot? I am working ...
2
votes
1answer
190 views

Neon VLD consuming more cycles than what is expected?

I have a simple asm code which loads 12 quad registers of NEON, and have paralleled pairwise add instruction along with the load instruction ( to exploit the dual issue capability). I have verified ...
2
votes
1answer
85 views

Relationship between SSE vectorization and Memory alignment

Why do we need aligned memory for SSE/AVX? One of the answer I often get is aligned memory load is much faster than unaligned memory load. Then, why is this aligned memory load is much faster than ...
2
votes
1answer
89 views

Forcing Automatic vectorization with GCC

Here my very simple question. With ICC I know it is possible to use #pragma SIMD to force vectorization of loops that the compiler chooses not to vectorize. Is there something analogous in GCC? Or, is ...
2
votes
1answer
51 views

Am I using _mm_srl_epi32 wrong?

In this small code example: __m128i twos = _mm_set_epi32(2,3,1,2); __m128i foo = _mm_set_epi32(128,128,128,128); __m128i shifted = _mm_srl_epi32(foo,twos); "shifted" is full of zeroes, while I ...
3
votes
1answer
58 views

“Extend” data type size in SSE register

I'm using VS2005 (at work) and need an SSE intrinsic that does the following: I have a pre-existing __m128i n filled with 16 bit integers a_1,a_2,....,a_8. Since some calculations that I now want ...
10
votes
2answers
364 views

Parallel for vs omp simd: when to use each?

OpenMP 4.0 introduces a new construct called "omp simd". What is the benefit of using this construct over the old "parallel for"? When would each be a better choice over the other?
0
votes
0answers
101 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 ...
0
votes
2answers
91 views

SIMD: Flip sign of four packed integer

Let's say I have four packed ints. __m128i val = _mm_set_epi32(42,64,123,456); What's the fastest way to flip the sign (multiply by -1) of the four integers in val?
-2
votes
1answer
111 views

How many functional units does NEON on Cortex-a8 have? [closed]

My question is how many and what all functional units does the NEON unit on ARM cortex-a8 have? If I have read correctly, the TRM doesn't explicitly say anything about the number of functional units ...

1 2 3 4 5 7