0
votes
1answer
53 views

Intel and GNU C compilers contradict themselves w.r.t vectorisation

In class, we were given a simple loop we were supposed to vectorize. This went well enough, but we came across a curious thing. Consider this code: #include<stdio.h> void func(int N, double ...
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 ...
0
votes
1answer
203 views

Loop Vectorization 001

I have a Vectorization optimization problem. I have a struct pDst which have 3 fields named: 'red', 'green' and 'blue'. The type might be 'Char', 'Short' or 'Float'.This is given and can not be ...
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 ...
1
vote
0answers
69 views

Mixing 2 different datatypes preventing code vectorization

I have spent many weeks trying to properly hand vectorize a piece of code using Intel SSE intrinsics. But every time I kept encountering the following message (after turning on -vec-report3): (line ...
11
votes
1answer
824 views

Unable to detect why the following piece of code was not vectorized

I have been struggling with vectorizing a particular application for sometime now and I have tried everything. From autovectorization, to handcoded SSE intrinsics. But somehow I am unable to obtain ...
1
vote
1answer
144 views

Dependence speed up on data size using auto vectorization and sse

I'm trying to speed up some code using auto vectorization from Intel Compiler and using sse. All computations are transformation some struct node_t to another struct w_t (functions tr() and gen_tr()). ...
0
votes
2answers
364 views

Directory of Vectorization Report for Intel C++ Compiler in VS 10

In VS 10, I set "Vectorizer Diagnostic Level" to "n=2" and "Optimization Diagnostic Phase" to "hpo" as directed in "A Guide to Vectorization with Intel C++ Compilers". However, (this may be a silly ...
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 ...