0
votes
0answers
19 views

vectorize operation in C with Cell BE

I have the following scenario: a 1d array of dim size, and another 2 arrays of dim/2 size. I want to copy the elements of the smaller arrays into the larger one. Normally I do this using the following ...
1
vote
1answer
56 views

vectorize a filter to a subsequence of an array in Matlab

I have a vector,"a", and a filter,"b".Both of those vectors contain only 0 or 1. I would like to transform "a" such that any sequence of 1 only starts when b is at 1. I have illustrated this using a ...
0
votes
2answers
40 views

Vectorize sum of outer products in matlab

Any ideas how to vectorize this code? The result S should be 3x3. %PNorm is n x 3 S = zeros(3,3,n); %TODO vectorize for i = 1:n S(:,:,i) = Pnorm(i,:)'*Pnorm(i,:); end S = sum(S, 3);
1
vote
1answer
57 views

Vectorizing Code for efficient implementation

The following is an IIR code. I need to vectorize the code so that I can write NEON code efficiently. Example of vectorization Non vectorized code for(i=0;i<100;i++) a[i] =a[i]*b[i]; //only ...
1
vote
3answers
108 views

How to optimize a matlab function that makes a linear index from a 3D matrix

I have written a small piece of code in MATLAB. This is actually a function to make a linear index from a 3D matrix. This is actually part of a bigger project. the problem is the code works but it is ...
0
votes
0answers
44 views

How to vectorize multiple nested for loops?

I have been trying to vectorize the 3 nested FOR loops below to create 'new_real_parameters' multidim. array having the same values than in 'real_parameters'. So far I have used the cumsum function ...
0
votes
1answer
40 views

closed loop optimization in MATLAB

I would like to vectorize the following loop: for I=1:N x = f(x); end with f being a custom function, i.e. an anonymous function. Is there a command like arrayfun that allows this? edit: May be ...
1
vote
2answers
180 views

Option Pricing with volatility following a Garch process by use of Monte-Carlo Simulations

> Name Date Close CP ttmDaysW ttm Strike Fut Wibor lambda omega alpha beta sigma 1 OW20C1330 2011-01-19 0.60 c 42 0.1673307 3300 2768 0.0425 0.03985676 ...
0
votes
3answers
63 views

Vectorize matlab code to map nearest values in two arrays

I have two lists of timestamps and I'm trying to create a map between them that uses the imu_ts as the true time and tries to find the nearest vicon_ts value to it. The output is a 3xd matrix where ...
0
votes
1answer
105 views

Vectorization of Matlab Code involving ODE solver at each iteration

I want to write a fast MATLAB code where I need to write a for loop and I need to solve an ordinary differential equation each time.Is there any way to vectorize the code? Following is the part of ...
0
votes
0answers
75 views

how do I copy arrays using a vectorized loop?

I would like to vectorize a simple array copy. The arrays are handed in as a float* with an int for the size. I check the sizing beforehand then run the copy: int i; float *vec; float *tab; for(i ...
1
vote
1answer
112 views

MATLAB - Vectorize a double loop containing a distance measure

I am trying to optimize my code and am not sure how and if I would be able to vectorize this particular section?? for base_num = 1:base_length for sub_num = 1:base_length ...
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 ...
4
votes
3answers
103 views

Best resource for learning speed up and vectorization tips in Matlab [closed]

For a beginner to Matlab code optimization, there are some resources but not all very clear and easy to understand.
0
votes
0answers
43 views

matlab vectorization for-loop

I'm sort of a novice matlab user at best. Then, How to effectively vectorize the loop in this code? se = strel('diamond',2); row = size(P, 1); % where P is a RGB image col = size(P, 2); crist = ...
3
votes
2answers
103 views

Optimizing a Vectorized Matlab Function

When i run profiler it tell me that the most time consuming code is the function vdist. Its a program that measures distance between two points on earth considering earth as an ellipsoid. The code ...
-1
votes
1answer
103 views

Need to optimize this matlab code..vectorization will help or not? [duplicate]

Possible Duplicate: Optimization a recurring matlab code Is vectorization a good option in optimizing this piece of code? What criteria decides, whether we vectorize a code or not? What ...
4
votes
1answer
177 views

Vectorization of matlab code

i'm kinda new to vectorization. Have tried myself but couldn't. Can somebody help me vectorize this code as well as give a short explaination on how u do it, so that i can adapt the thinking process ...
3
votes
1answer
139 views

x86-64 integer vectorisation optimise

I am trying to vectorize a logical validation problem to run on Intel 64. I will first try to describe the problem: I have a static array v[] of 70-bit integers (appx 400,000 of them) which are all ...
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 ...
0
votes
1answer
106 views

Vectorize a call to a subroutine

I have a program where the call to subroutine foo doesn't get vectorized even though IVDEP pragma is used. vec-report3 doesn't give me any reason on why the call is not vectorized. Is it because of ...
0
votes
2answers
106 views

vectorization of for-loops with if-conditions gets slower

I have one for-loop that I'm working on vectorizing it. The problem is, once vectorized, the code is 3 times slower. The original code, which is part of a thermodynamic algorithm, is: ...
3
votes
1answer
256 views

how to optimize nested for loop in matlab

I have a for loop nested thrice in a matlab program. Can any of you help me optimize it. w=5; a = rand(m*n,10); b=rand(m,n); for i = 1 : m for j = 1 : n for k = 1 : l if (i-w >= ...
2
votes
2answers
337 views

Floating point math vectorizes, but integer math does not

I have a tight inner loop that is sucking up quite a bit of CPU power. So I'm trying to optimize it. I've got two versions of the code, one that operates on floating point numbers, the other on ...
1
vote
1answer
191 views

Optimizing count of occurrence of a string

I have to count how often a certain string is contained in a cell-array. The problem is the code is way to slow it takes almost 1 second in order to do this. uniqueWordsSize = 6; % just a sample ...
0
votes
2answers
75 views

Optimization gives incorrect image in MATLAB

im working with images double(800x450x3) and I want to change the value of a pixel if it holds certain conditions. However the code that i first had works and gives me a good image. When i tried to ...
0
votes
4answers
83 views

Can parallelization have a negative performance impact?

With the abundance of techniques being employed to increase parallelization in today's compiler-tools (especially auto-parallelization of certain viable for-constructs, c.f. the Intel C++ Compiler, ...
2
votes
2answers
496 views

Fast way of getting index of match in list

Given a list a containing vectors of unequal length and a vector b containing some elements from the vectors in a, I want to get a vector of equal length to b containing the index in a where the ...
1
vote
2answers
587 views

Double Summation in MATLAB and vectorized loops

Here's my attempt in implementing this lovely formula. http://dl.dropbox.com/u/7348856/Picture1.png %WIGNER Computes Wigner-Distribution on an image (difference of two images). function[wd] = ...
3
votes
1answer
181 views

Efficiently Set Lowest 64 Bits of YMM Register to Constant

How can I set the lowest 64 bits of a YMM register to some constant, in the least number of clock cycles? I know various ways that I can do this using SSE instructions, as well as the AVX instruction ...
8
votes
1answer
191 views

Minimize vector indexing overhead

I have a vectorized function which calculates distance to a large set of points. To improve performance I am limiting the number of the points by selecting only the necessary ones. So instead of ...
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 ...
8
votes
5answers
291 views

How can I speed up this call to quantile in Matlab?

I have a MATLAB routine with one rather obvious bottleneck. I've profiled the function, with the result that 2/3 of the computing time is used in the function levels: The function levels takes a ...
0
votes
2answers
67 views

Matlab: Optimize this (pt 2)

Here's another one: ValidFirings = ((DwellTimes > 30/(24*60*60)) | (GroupCount > 1)); for i = length(ValidFirings):-1:2 if(~ValidFirings(i)) DwellTimes(i-1) = ...
1
vote
2answers
83 views

Matlab: Optimize this?

Im v new to matlab. Have been tasked with speeding up a procedure. Im sure there is a better way to do the following statements: for i = 2:length(WallId) if WallId(i) ~= WallId(i-1) ...
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 ...
1
vote
1answer
205 views

Loop optimization by the IBM xlC compiler with Altivec

I was just playing around with the Altivec extension on a power6 cluster we have. I noticed that when I compiled the code below without any optimizations, my speedup was 4 as I was expecting. ...
2
votes
3answers
159 views

Vectorizing a search function that contains a loop and an if clause

I am given two very large data sets and I've been trying to build a function that would find certain coordinates from one set that respect an if clause regarding the other data set. My problem is that ...
7
votes
2answers
945 views

SSE vectorization of math 'pow' function gcc

I was trying to vectorize a loop that contains the use of the 'pow' function in the math library. I am aware intel compiler supports use of 'pow' for sse instructions - but I can't seem to get it to ...
2
votes
2answers
703 views

Assigning to multiple sub-matrices of a matrix simultaneously. Possible optimization by vectorized indices

Is there a clever way to vectorize a for-loop which assigns elements to submatrices of a matrix? Initially, I had two for-loops: U=zeros(6*(M-2),M-2); for k=2:M-3 i=(k-1)*6+1; for ...
1
vote
1answer
323 views

vectorize C++ code to improve STL performance

I am doing calculations on values contained in several large STL vector containers in an application built using C++/ Linux/ GCC / Windows XP/ Intel compiler Is it worthwile investigating ...
1
vote
1answer
229 views

Convert (vectorize) code with per32-bit element conditional to SSE2 SSE3

I want to vectorize code for Core2. I think, I can use intrinsic functions from gcc or icc, and the SSE, SSE2, SSE3, SSSE3 instructions are allowed. My code works on arrays of 8 uint32_t elements and ...
0
votes
2answers
266 views

Optimizing the Verhoeff Algorithm in R

I have written the following function to calculate a check digit in R. verhoeffCheck <- function(x) { ## calculates check digit based on Verhoeff algorithm ## note that due to the way strsplit ...
1
vote
1answer
367 views

Can this piece of matlab script be vectorized further?

So what I am trying to do with this code is find all pixels on a line of an image that are below a certain threshold. The problem, however, is that this code is executed in a double for loop (yeah I ...
3
votes
3answers
2k views

vectorizing a for loop in numpy/scipy?

I'm trying to vectorize a for loop that I have inside of a class method. The for loop has the following form: it iterates through a bunch of points and depending on whether a certain variable (called ...
3
votes
4answers
654 views

What is the maximum theoretical speed-up due to SSE for a simple binary subtraction?

In trying to figure out whether or not my code's inner loop is hitting a hardware design barrier or a lack of understanding on my part barrier. There's a bit more to it, but the simplest question I ...