Streaming SIMD Extensions (SSE) is the first generation of SIMD Intel's instruction sets available on modern x86-compatible CPUs. SSE offers single-precision floating point arithmetic and integer arithmetic (excluding division) and logical operations on packed or single operands of sizes from 8 to ...

learn more… | top users | synonyms

0
votes
0answers
34 views

Can't read float array into __m128

I'm fiddling around with vectorization (first time learner). The point of it is the see whether I can unroll a loop. I like to load four consecutive floats like this, see Seg fault. el0 = ...
3
votes
0answers
76 views

What's the difference between GCC builtin vectorization types and C arrays?

I have three functions a(), b() and c() that are supposed to do the same thing: typedef float Builtin __attribute__ ((vector_size (16))); typedef struct { float values[4]; } Struct; typedef ...
3
votes
1answer
88 views

Why don't GCC and Clang use cvtss2sd [memory]?

I'm trying to optimize some code that's supposed to read single precision floats from memory and perform arithmetic on them in double precision. This is becoming a significant performance bottleneck, ...
1
vote
1answer
47 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
59 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 ?
1
vote
2answers
81 views

Is __int128_t arithmetic emulated by GCC, even with SSE?

I've heard that the 128-bit integer data-types like __int128_t provided by GCC are emulated and therefore slow. However, I understand that the various SSE instruction sets (SSE, SSE2, ..., AVX) ...
1
vote
1answer
65 views

Atomic operators, SSE/AVX, and OpenMP

I'm wondering if SSE/AVX operations such as addition and multiplication can be an atomic operation? The reason I ask this is that in OpenMP the atomic construct only works on a limited set of ...
4
votes
2answers
126 views

How do I more efficiently multiply transpose matrices?

I keep beating myself over the head with this. I have an SSE-based algorithm for multiplying matrix A by matrix B. I need to also implement the operations for where A, B, or both are transposed. I did ...
6
votes
1answer
174 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 ...
2
votes
2answers
56 views

How to hint OpenMP Stride?

I am trying to understand the conceptual reason why OpenMP breaks loop vectorization. Also any suggestions for fixing this would be helpful. I am considering manually parallelizing this to fix this ...
0
votes
1answer
66 views

SSE FPU parallel

I was wondering if it would be possible to use SSE in parallel with x87. So consider the following pseudo code, 1: sse_insn 2: x87_insn Would the pipeline execute 1 and 2 in parallel assuming they ...
0
votes
1answer
103 views

My SSE2 Flooring function has some problems

So I wrote a function using SSE2 that floors a vector but it seems to only work for certain purposes for example it works fine for my bi-linear filtering algorithm but when used to perform a modulo it ...
1
vote
1answer
57 views

Did the Streaming SIMD Extensions replace x87 instruction set?

I know that the SSEs are an alternative to the x87 floating point instruction, but is the x87 FPU still implemented in modern CPUs like Ivy-Bridge or Haswell? Did SSEs replace the x87 instruction ...
5
votes
4answers
132 views

best cross-platform method to get aligned memory

Here is the code I normally use to get aligned memory with Visual Studio and GCC inline void* aligned_malloc(size_t size, size_t align) { void *result; #ifdef _MSC_VER result = ...
3
votes
2answers
138 views

Is worth using SSE or should I just rely on the compiler?

I am looking into SSE instructions which are great and started to work some simple code to measure the difference between a function using them and the same function using "standard" code (i.e non ...
0
votes
0answers
39 views

How do I know if I can compile with FMA instruction sets?

I have seen questions about how to use FMA instructions set but before I get to start using them, I'd first like to know if I can (does my processor support them). I found a post saying that I needed ...
-1
votes
2answers
67 views

SSE int64 Intrinsics

Please i'm tryin to do some optimization on some int64 arithmetic. I need to do oprations like right and left shift, division, remainder and all, buh i've search all SSE intrinsics and found nothing. ...
10
votes
2answers
85 views

Why do some SSE “mov” instructions specify that they move floating-point values?

Many SSE "mov" instructions specify that they are moving floating-point values. For example: MOVHLPS—Move Packed Single-Precision Floating-Point Values High to Low MOVSD—Move Scalar ...
-2
votes
1answer
65 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); ...
8
votes
1answer
53 views

Visual Studio parameter alignment restrictions and Windows x64 ABI

With Visual C++ on WIN32 there's a long-standing problem with functions with 4 or more SSE parameters, e.g. __m128i foo4(__m128i m0, __m128i m1, __m128i m2, __m128i m3) {} generates an error: ...
3
votes
1answer
119 views

How to load two sets of 4 shorts into an XMM register?

I'm just getting started with SSE intrinsics using Visual C++ 2012 and I need some pointers (no pun intended). I have two arrays containing 4 signed shorts each (each array is thus 64-bit, totalling ...
1
vote
1answer
54 views

Loading non continguous floats using SSE

Is there an Intel SSE instruction which can load floats from (non contiguous) evenly spaced memory addresses? For example given an array A = {0, 1, 2, 3 .... n}, I would like to load into a 128 bit ...
2
votes
2answers
160 views

8-bit FFT for CPU architectures?

I am looking for an FFT engine that can handle 8-bit real to complex transforms (of size 65K). The need for this is to accelerate a real-time signal processing engine. It is currently limited by ...
0
votes
1answer
49 views

converting four floats in xmm3 to four ints in memory

I am newbie to sse, and I have trouble to find it, please tell me what is the good way to convert (truncate as in "(int) float_") four packed floats I have in xmm3 register into four ints and store ...
4
votes
4answers
159 views

Fast dot product of a bit vector and a floating point vector

I'm trying to compute the dot product between a floating and a bit vector in the most efficient manner on a i7. In reality, I'm doing this operation on either 128 or 256-dimensional vectors, but for ...
2
votes
1answer
183 views

max FLOPS for matrix multiplication Intel/AMD CPU

My formula for estimating the maximum FLOPs/s of an Intel CPU is Max SP FLOPs/s = frequencey * 4 SSE(8AVX) * 2 (MAC) * number of cores (not HW threads) Max DP FLOPs/s = 0.5 * Max SP FLOPs/s By MAC ...
4
votes
7answers
478 views

Speedup a short to float cast?

I have a short to float cast in C++ that is bottlenecking my code. The code translates from a hardware device buffer which is natively shorts, this represents the input from a fancy photon counter. ...
0
votes
2answers
98 views

SSE Documentation and accessing

at the moment i am accessing my float values via a Union typedef union { float v[4]; _mm128 m; }SSEFloat; but in this link i heared that the performane is loss. Is there a performane lose with ...
2
votes
1answer
99 views

SSE Intrinsics: Fastest way to test for all 0s or 1s?

I have developed a Mandelbrot generator for Windows which I have just converted to use SSE Intrinsics. To detect the end of the iterations, in normal arithmetic I do a greater than compare and break ...
2
votes
0answers
141 views

MS Visual Studio 2008 + SSE + x64 + O2 incorrect results

I wrote simple raytracer using MS VS 2008 (SP1) and SSE intrinsics. When I turn O2 optimization (for x86 platform) it speeds up 3 times. Obviously I would like to use it for x64 too. Unfortunately for ...
0
votes
0answers
85 views

some mandelbrot drawing routine from c to sse2

I want to rewrite such simple routine to SSE2 code, (preferably in nasm) and I am not totally sure how to do it, two things not clear (how to express calculations (inner loop and those from outer loop ...
-1
votes
1answer
77 views

What is the difference between loadu and load?

What is more efficient and why?
9
votes
1answer
155 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 ...
2
votes
1answer
278 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 ...
0
votes
0answers
87 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 ...
3
votes
1answer
81 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++) { ...
3
votes
0answers
234 views

loop tiling/blocking for large dense matrix multiplication

I was wondering if someone could show me how to use loop tiling/loop blocking for large dense matrix multiplication effectively. I am doing C = AB with 1000x1000 matrices. I have followed the ...
2
votes
1answer
65 views

Trying to add an __m128 using an and mask in SSE programming

I am trying to use the result of a compare operation to add to an SSE variable. I have just realised that when using the _mm_cmplt_ps operation if the result is true it returns a NAN because ...
6
votes
2answers
276 views

How to use align-data-move SSE in Delphi XE3?

I was trying to run the following, type Vector = array [1..4] of Single; {$CODEALIGN 16} function add4(const a, b: Vector): Vector; register; assembler; asm movaps xmm0, [a] movaps xmm1, [b] ...
3
votes
1answer
85 views

Strange /fp Floating Point Model flag behavior

I was examining some code which uses the /fp:precise and /fp:fast flags. According to the MSDN documentation for /fp:precise: With /fp:precise on x86 processors, the compiler will perform ...
3
votes
2answers
109 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
2answers
137 views

_mm_crc32_u64 poorly defined

Why in the world was _mm_crc32_u64(...) defined like this? unsigned int64 _mm_crc32_u64( unsigned __int64 crc, unsigned __int64 v ); The "crc32" instruction always accumulates a 32-bit CRC, never a ...
3
votes
2answers
91 views

How to “remove” bytes at the end of a SSE register?

For a uni assignment, I need to write a function which counts the number of spaces in a string (defined by a pointer and an index) in assembly. There's a requirement to use pcmpeqb for this (that is, ...
2
votes
1answer
144 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 ...
24
votes
1answer
489 views

Why is my hand-tuned, SSE-enabled code so slow?

Long story short: I'm developing a computing-intensive image processing application in C++. It needs to calculate many variants of image warps on small blocks of pixels extracted from larger images. ...
2
votes
1answer
179 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
157 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 ...
1
vote
1answer
75 views

XMM Registers Total or Per Core

In a multicore CPU, does each core have access to it's own bank of XMM registers? For example if a chip is listed as having 16 XMM registers (XMM0-XMM15), is that 16 registers per core or 16 shared? ...
2
votes
1answer
135 views

How can I get GCC to vectorize this simple copy loop with SSE instructions?

This is a follow up to this question about getting GCC to optimize memcpy() in a loop; I've given up and decided to go the direct route of optimizing the loop manually. I'm trying to stay as portable ...
6
votes
3answers
253 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 ...

1 2 3 4 5 13