Vectorization refers to a programming paradigm where functions operate on whole arrays in one go. This affords benefits in terms of function calls, memory access, parallelization and code expressiveness. Some programming languages, such as MATLAB, optimised to give the best performance when vectorized.

learn more… | top users | synonyms (2)

414
votes
7answers
92k views

Why is one loop so much slower than two loops?

Suppose a1, b1, c1, and d1 point to heap memory and my numerical code has the following core loop. const int n=100000 for(int j=0;j<n;j++){ a1[j] += b1[j]; c1[j] += d1[j]; } This loop ...
12
votes
5answers
179 views

r: for loop operation with nested indices runs super slow

I have an operation I'd like to run for each row of a data frame, changing one column. I'm an apply/ddply/sqldf man, but I'll use loops when they make sense, and I think this is one of those times. ...
12
votes
4answers
509 views

What is the easiest way to parallelize a vectorized function in R?

I have a very large list X and a vectorized function f. I want to calculate f(X), but this will take a long time if I do it with a single core. I have (access to) a 48-core server. What is the easiest ...
12
votes
4answers
807 views

What is “vectorization”?

Several times now, I've encountered this term in matlab, fortran ... some other ... but I've never found an explanation what does it mean, and what it does? So I'm asking here, what is vectorization, ...
9
votes
7answers
2k views

Is it possible that F# will be optimized more than other .Net languages in the future?

Is it possible that Microsoft will be able to make F# programs, either at VM execution time, or more likely at compile time, detect that a program was built with a functional language and ...
8
votes
3answers
126 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
119 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 ...
8
votes
4answers
380 views

Finding islands of zeros in a sequence

Imagine you have a very long sequence. What is the most efficient way of finding the intervals where the sequence is all zeros (or more precisely the sequence drops to near-zero values abs(X)<eps): ...
8
votes
4answers
983 views

C++ STL data structure alignment, algorithm vectorization

Is there a way to enforce STL container alignment to specific byte, using attribute((aligned))perhaps? the target compilers are not Microsoft Visual C++. What libraries, if any, provide specialized ...
7
votes
3answers
491 views

Which haskell array implementation to use? AKA what are the pros and cons of each

What do I need? [an unordered list] VERY easy parallelization support for map, filter etc. ability to perform array based computations efficiently, like A=B+C, sort of like matlab arrays. Generation ...
7
votes
5answers
273 views

Vectorisation of powers

Let x=1:100 and N=1:10 I would like to create matrix x^N so that the ith column contains the entries [1 i i^2 ... i^N] I can easily do this using for loops. But is there a way to do this using ...
7
votes
5answers
2k views

MATLAB: compute mean of each 1-minute interval of a time-series

I have a bunch of times-series each described by two components, a timestamp vector (in seconds), and a vector of values measured. The time vector is non-uniform (i.e. sampled at non-regular ...
6
votes
2answers
150 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 ...
6
votes
2answers
388 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 ...
6
votes
3answers
371 views

Alignment of Heap Arrays in C and C++ to Ease Compiler (GCC) Vectorization

I'm currently cooking up a wrapper container template class for std::vector that automatically creates a multi-resolution pyramid of the elements in its std::vector. The key issue now is that I want ...
6
votes
3answers
133 views

inconsistent results using isreal

Take this simple example: a = [1 2i]; x = zeros(1,length(a)); for n=1:length(a) x(n) = isreal(a(n)); end In an attempt to vectorize the code, I tried: y = arrayfun(@isreal,a); But the ...
6
votes
3answers
435 views

Vectorizing sums of different diagonals in a matrix

I want to vectorize the following MATLAB code. I think it must be simple but I'm finding it confusing nevertheless. r = some constant less than m or n [m,n] = size(C); S = zeros(m-r,n-r); for ...
6
votes
5answers
264 views

Mapping 2 vectors - help to vectorize

Working in Matlab I have 2 vectors of x coordinate with different length. For example: xm = [15 20 24 25 26 35 81 84 93]; xn = [14 22 26 51 55 59 70 75 89 96]; I need to map xm to xn, or in other ...
6
votes
2answers
1k views

Turning a binary matrix into a vector of the last nonzero index in a fast, vectorized fashion

Suppose, in MATLAB, that I have a matrix, A, whose elements are either 0 or 1. How do I get a vector of the index of the last non-zero element of each column in a faster, vectorized way? I could do ...
5
votes
1answer
152 views

Why does GCC not auto-vectorize this loop?

I am attempting to optimize a loop that accounts for a lot of my program's computation time. But when I turn on auto-vectorization with -O3 -ffast-math -ftree-vectorizer-verbose=6 GCC outputs that it ...
5
votes
2answers
125 views

How to avoid enormous additional memory consumption when using numpy vectorize?

This code below best illustrates my problem: The output to the console (NB it takes ~8 minutes to run even the first test) shows the 512x512x512x16-bit array allocations consuming no more than ...
5
votes
4answers
307 views

Vectorized operations on cell arrays

This post was triggered by following discussion on whether cell arrays are "normal arrays" and that vectorizaton does not work for cell arrays. I wonder why following vectorization syntax is not ...
5
votes
4answers
1k views

How to assign values on the diagonal?

Suppose I have an NxN matrix A, an index vector V consisting of a subset of the numbers 1:N, and a value K, and I want to do this: for i = V A(i,i) = K end Is there a way to do this in one ...
5
votes
6answers
477 views

how to avoid loops

HI All, I'm new to R. I have two panel data files, with columns "id", "date" and "ret" file A has a lot more data than file B, but i'm primarily working with file B data. Combination of "id" and ...
5
votes
1answer
1k views

R strsplit and vectorization

When creating functions that use strsplit, vector inputs do not behave as desired, and sapply needs to be used. This is due to the list output that strsplit produces. Is there a way to vectorize the ...
5
votes
1answer
2k views

Mean filter in MATLAB without loops or signal processing toolbox

I need to implement a mean filter on a data set, but I don't have access to the signal processing toolbox. Is there a way to do this without using a for loop? Here's the code I've got working: ...
5
votes
5answers
641 views

What does vectorization mean?

Is it a good idea to vectorize the code? What are good practices in terms of when to do it? What happens underneath?
4
votes
2answers
96 views

Writing functions that accept both 1-D and 2-D numpy arrays?

My understanding is that 1-D arrays in numpy can be interpreted as either a column-oriented vector or a row-oriented vector. For instance, a 1-D array with shape (8,) can be viewed as a 2-D array of ...
4
votes
4answers
100 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[] ...
4
votes
3answers
180 views

Matlab array of struct : Fast assignment

Is there any way to "vector" assign an array of struct. Currently I can edges(1000000) = struct('weight',1.0); //This really does not assign the value, I checked on 2009A. for i=1:1000000; ...
4
votes
1answer
145 views

vectorization vs. parallelization in R

As a toy example, suppose that we have a function called 'my_func' (the code is below) that takes two parameters 'n' and 'p'. Our function, 'my_func', will generate a random matrix 'x' with 'n' rows ...
4
votes
3answers
207 views

Apply lm to subset of data frame defined by a third column of the frame

I've got a data frame containing a vector of x values, a vector of y values, and a vector of IDs: x <- rep(0:3, 3) y <- runif(12) ID <- c(rep("a", 4), rep("b", 4), rep("c", 4)) df <- ...
4
votes
1answer
75 views

elementwise binding in R

I want a function f such that (outer(X, Y, f))[i, j] is a side-by-side concatenation of the i-th element of X and the j-th element of Y, something like c(X[i], Y[j]), or having a similar structure. ...
4
votes
3answers
692 views

Why won't GCC auto-vectorize this loop?

I have the following C program (a simplification of my actual use case which exhibits the same behavior) #include <stdlib.h> #include <math.h> int main(int argc, char ** argv) { const ...
4
votes
2answers
206 views

Vectorize call to function of two vectors (treat matrix as array of vector)

I wish to compute the cumulative cosine distance between sets of vectors. The natural representation of a set of vectors is a matrix...but how do I vectorize the following? function d = ...
4
votes
4answers
159 views

Is it possible to vectorise the sequential update of the elements of a vector in R?

Is it possible to vectorise code like the following? length(x) <- 100; x[1] <- 1; y <- rnorm(100); for(i in 2:100) { x[i] <- 2 * y[i] * x[i-1]; } I appreciate that ...
4
votes
3answers
213 views

How to speed this kind of double for-loop?

I am programming an expectation-maximization algorithm with R. In order to speed-up the computation, I would like to vectorize this bottleneck. I know that N is about a hundred times k. MyLoglik = 0 ...
4
votes
4answers
304 views

how to substitute a for loop in R with an optimized function (lapply?)

I've a data frame with time events on each row. In one row I've have the events types of sender (typeid=1) and on the other the events of the receiver (typeid=2). I want to calculate the delay between ...
4
votes
3answers
2k views

MATLAB: comparison of cell arrays of string

I have two cell arrays of strings, and I want to check if they contain the same strings (they do not have to be in the same order, nor do we know if they are of the same lengths). For example: a = ...
4
votes
4answers
322 views

vectorized array creation from a list of start/end indices

I have a two-column matrix M that contains the start/end indices of a bunch of intervals: startInd EndInd 1 3 6 10 12 12 15 16 How can I generate a vector of all ...
4
votes
1answer
683 views

Vectorizing for loops in MATLAB

I'm not too sure if this is possible, but my understanding of MATLAB could certainly be better. I have some code I wish to vectorize as it's causing quite a bottleneck in my program. It's part of an ...
4
votes
3answers
8k views

How do I compare all elements of two arrays?

I have two big arrays with about 1000 rows and 1000 columns. I need to compare each element of these arrays and store 1 in another array if the corresponding elements are equal. I can do this with ...
4
votes
1answer
4k views

How to convert a vector to cell array

I have a column vector I want to convert to a cell array such as: A = rand(10,1); B = cell(10,1); for i=1:10 B{i} = A(i); end B = [0.6221] [0.3510] [0.5132] [0.4018] ...
4
votes
1answer
2k views

MATLAB: vectorized assignment from double array to cell array

I have three arrays, all the same size: xout % cell array xin % numeric array of doubles b % logical array How can I take the elements of xin that correspond to the indices ...
4
votes
1answer
840 views

split long 2D matrix into the third dimension

Say I have the following matrix: A = randi(10, [6 3]) 7 10 3 5 5 7 10 5 1 6 5 10 4 9 1 4 10 1 And I would like to extract ...
3
votes
2answers
45 views

vectorized if in matlab

I have a boolean array call it flag. I have two numeric arrays ifTrue, ifFalse. All these arrays are the same size, For purposes of this question assume every element in these arrays is unique. I ...
3
votes
1answer
95 views

Vectorized moving window on 2D array in numpy

I am apply an operation on a moving window of constant size across a 2D array. Is there an efficient vectorize-like operation I can implement to do this without looping in Python? My current ...
3
votes
3answers
109 views

Cumulative sums over run lengths. Can this loop be vectorized?

I have a data frame on which I calculate a run length encoding for a specific column. The values of the column, dir, are either -1, 0, or 1. dir.rle <- rle(df$dir) I then take the run lengths and ...
3
votes
2answers
107 views

Compare two vectors of unequal lengths to get a logical array

I need to vectorize the following code: a = [1 2 3 2 3 1]; b = [1 2 3]; for i = 1:length(a) for j = 1:length(b) r(i, j) = (a(i) == b(j)); end end The output r should be a logical ...
3
votes
2answers
80 views

Generalized Matrix Product

I'm fairly new to MATLAB. Normal matrix multiplication of a M x K matrix by an K x N matrix -- C = A * B -- has c_ij = sum(a_ik * b_kj, k = 1:K). What if I want this to be instead c_ij = sum(op(a_ik, ...

1 2 3 4