Tagged Questions
0
votes
0answers
73 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 ...
3
votes
1answer
129 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
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 ...
-1
votes
1answer
74 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 = ...
1
vote
1answer
155 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 ...
2
votes
1answer
91 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
0answers
177 views
SIMD vector interoperability between LLVM and gcc
I would like to accelerate an program I'm working on by dynamically generating code with LLVM's JIT. The algorithm can operate on vectors, and I'd rather like to use the SIMD vector extensions in LLVM ...
1
vote
2answers
118 views
vectorize a loop having indirect access
I have the below snippet which is a hotspot in an application.
The for loop is not vectorized due to vector dependance.
Is there a way to rewrite this loop to make it run faster.
#define NUM_KEYS ...
1
vote
2answers
85 views
ICC opt-report “subscript too complex”
When I compile a given file with the -opt-report or -vec-report options in ICC I get, among others, this message:
foo.c(226:7-226:7):VEC:function_foo: loop was not vectorized: subscript too complex
...
1
vote
1answer
157 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 ...
4
votes
2answers
237 views
GCC SIMD vector cast
I'm using the GCC SIMD vector extension for a project, everything works quite quite well but casts, they simply reset all the components of a vector.
The manual states:
It is possible to cast ...
1
vote
0answers
155 views
False autovectorization in Intel C compiler (icc)
I need to vectorize with SSE a some huge loops in a program. In order to save time I decided to let ICC deal with it. For that purpose, I prepare properly the data, taking into account the alignment ...
3
votes
1answer
234 views
vectorize a loop which accesses non-consecutive memory locations
I have a loop of this structure
Reference : Maxwell Code Example
do z=1,zend
do y=1,yend
do x=1,xend
k=arr(x,y,z)
do while(k.ne.0)
ix=fooX(k)
...
0
votes
1answer
115 views
Vectorizing Nested Loop - SIMD
Does anybody know to to vectorize something like this using SIMD :
for(size_t i = 0; i < refSeq.length() / 4; i++){
for(size_t j = 0; j<otherSeq.length(); j++){
if(refSeq[i] == ...
3
votes
1answer
298 views
Efficient way to create a bit mask from multiple numbers possibly using SSE/SSE2/SSE3/SSE4 instructions
Suppose I have 16 ascii characters (hence 16 8 bit numbers) in a 128 bit variable/register. I want to create a bit mask in which those bits will be high whose bit positions (indexes) are represented ...
0
votes
1answer
149 views
Using __builtin_ia32_shufps to shift a vector by 32 bits?
This is the prototype for the function:
v4si __builtin_ia32_shufps (v4si, v4si, int)
On some websites I found they had but hex in the int field, and it looked liked it separated high and low bits, ...
3
votes
1answer
456 views
Loading data for GCC's vector extensions
GCC's vector extensions offer a nice, reasonably portable way of accessing some SIMD instructions on different hardware architectures without resorting to hardware specific intrinsics (or ...
3
votes
1answer
499 views
ARM NEON: comparing 128 bit values
I'm interested in finding the fastest way (lowest cycle count) of comparing the values stored into NEON registers (say Q0 and Q3) on a Cortex-A9 core (VFP instructions allowed).
So far I have the ...
9
votes
3answers
954 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 ...
1
vote
3answers
994 views
Mono SIMD worsening performance?
Benchmark Code:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Mono.Simd;
using MathNet.Numerics.LinearAlgebra.Single;
...
4
votes
4answers
842 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[] ...
2
votes
2answers
238 views
Why isn't this loop vectorized?
One particular hot spot when I profile a code I am working on, is the following loop:
for(int loc = start; loc<end; ++loc)
y[loc]+=a[offset+loc]*x[loc+d];
where the arrays y, a, and x have ...
7
votes
3answers
308 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 ...
3
votes
2answers
1k views
Fast vectorized conversion from RGB to BGRA
In a follow-up to some previous questions on converting RGB to RGBA, and ARGB to BGR, I would like to speed up a RGB to BGRA conversion with SSE. Assume a 32-bit machine, and would like to use ...
2
votes
1answer
225 views
How do you get the ICC compiler to generate SSE instructions within an inner loop?
I have an inner loop such as this
for(i=0 ;i<n;i++){
x[0] += A[i] * z[0];
x[1] += A[i] * z[1];
x[2] += A[i] * z[2];
x[3] += A[i] * z[3];
}
The inner 4 instructions can be easily converted to ...
3
votes
1answer
734 views
efficient way to convert scatter indices into gather indices?
I'm trying to write a stream compaction (take an array and get rid of empty elements) with SIMD intrinsics. Each iteration of the loop processes 8 elements at a time (SIMD width).
With SSE ...
1
vote
3answers
255 views
Assigning same memory to class member variables using unions
I am trying to vectorize existing Vector class
class Vector
{
public:
float X,Y,Z;
};
Trying to vectorize the class members without affecting other classes accessing the these member variable
...
4
votes
1answer
1k views
Can CUDA use SIMD extensions?
I google around a bit, but this is not clear to me now whether some GPUs programmed with CUDA can take advantage or can use instructions similar to those from SSE SIMD extensions; for instance whether ...
11
votes
5answers
1k 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]] ...
4
votes
2answers
958 views
Loop versioning with GCC
I am working on auto vectorization with GCC. I am not in a position to use intrinsics or attributes due to customer requirement. (I cannot get user input to support vectorization)
If the alignment ...
1
vote
2answers
446 views
Resources for (Manual and Automatic) Loop Vectorization
I see some resources for gcc, but not for Visual Studio.
Anyone have a treasure trove of references, examples and tricks?