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, are optimised to give the best performance when ...
4
votes
1answer
141 views
Getting all submatrices
I have got an N×M matrix m like:
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
I want to get all submatrices of size P×Q (P,Q are odd) w/o employing a for-loop.
The result s should be a ...
1
vote
2answers
95 views
How to vectorize the code in MATLAB
I have some Cluster Centers and some Data Points. I want to calculate the distances as below (norm is for Euclidean distance):
costsTmp = zeros(NObjects,NClusters);
lambda = ...
1
vote
2answers
65 views
How to vectorize matrix subsetting such that find() returns a matrix?
Given a matrix A, I need to find the indices corresponding to the values 1 and 2. I could do this sequentially as follows:
>> B
B =
1 2 3
4 1 6
7 8 9
...
1
vote
2answers
81 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
...
2
votes
2answers
582 views
Intel SSE and AVX Examples and Tutorials
Is there any good C/C++ tutorials or examples for learning Intel SSE and AVX instructions?
I found few on Microsoft MSDN and Intel sites, but it would be great to understand it from the basics..
2
votes
1answer
64 views
Vectorized Reshaping of Columns in an Array
I have an array A, and want to reshape the last four elements of each column into a 2x2 matrix. I would like the results to be stored in a cell array B.
For example, given:
A = [1:6; 3:8; 5:10]';
...
3
votes
1answer
232 views
Submatrices and indices using Eigen
I'm currently working on a MATLAB project and I'd like to re-implement the most computational-heavy parts using C++ and Eigen.
I'd like to know if there's a way to perform the following operation ...
3
votes
1answer
296 views
What do gcc's auto-vectorization messages mean?
I have some code that I would like to run fast, so I was hoping I could persuade gcc (g++) to vectorise some of my inner loops. My compiler flags include
-O3 -msse2 -ffast-math -ftree-vectorize ...
0
votes
1answer
93 views
excessive slowness for image processing (vectorization of nested for loops)
I need help with image processing in Octave. I'm trying to calculate a local "sliding window" ssd on some images. The slowness is excessive (the nested for loops add up to 88*120*41*41 iterations), so ...
3
votes
1answer
70 views
make Vectorize() pass dims OR properly vectorize this function
There is a function in the exactci package that I'd like to pass arguments to as matrices and get back a matrix. As it is, all arguments can only be vectors of length 1. I dug into the source and ...
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 ...
3
votes
1answer
80 views
“Desort” a vector (undo a sorting)
In Matlab, sort returns both the sorted vector and an index vector showing which vector element has been moved where:
[v, ix] = sort(u);
Here, v is a vector containing all the elements of u, but ...
6
votes
1answer
323 views
CPU/Intel OpenCL performance issues, implementation questions
I have some questions hanging in the air without an answer for a few days now. The questions arose because I have an OpenMP and an OpenCL implementations of the same problem. The OpenCL runs perfectly ...
8
votes
1answer
214 views
How to Vectorize a Nested Loop
I'm having trouble visualizing how to vectorize this set of loops. Any guidance would be appreciated.
ind_1 = [1,2,3];
ind_2 = [1,2,4];
K = zeros(3,3,3,3,3,3,3,3,3);
pp = rand(4,4,4);
for s = 1:3
...
25
votes
2answers
547 views
Is indexing vectors in MATLAB inefficient?
Background
My question is motivated by simple observations, which somewhat undermine the beliefs/assumptions often held/made by experienced MATLAB users:
MATLAB is very well optimized when it comes ...
5
votes
2answers
226 views
How to vectorize a simple for loop in Python/Numpy
I found dozens of examples how to vectorize for loops in Python/NumPy. Unfortunately, I don't get how I can reduce the computation time of my simple for loop using a vectorized form. Is it even ...
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.
1
vote
1answer
105 views
vectorized assignment statement for selected elements of 2d array in numpy
I am a beginner in python. I was wondering if there is a "good" way to do this operation without using for loops.
Consider the problem
u = zeros((4,2))
u_pres = array([100,200,300])
row_col_index = ...
0
votes
1answer
37 views
Distributing N elements into two bins, every distribution
I have N data elements (say, 1:N) that I want to distribute into two distinct groups. I do not know what the best distribution is, so I want to test every possible pairing, but ignore symmetric ...
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 = ...
-2
votes
1answer
56 views
if statement in numpy array always needs vectorization
The if statement in this function, works without vectorization?
def K(T0,z,v):
for i in range(len(T0)-1):
GDens[i+1]=(Dens[i+1]-Dens[i])/(z[i+1]-z[i])
for i in range(len(T0)):
...
1
vote
1answer
47 views
Bi-dimensional integral
I suppose I have a straightforward question to answer.
I have this piece of code:
clc, clear all, close all
Nx = 8192;
Ny = 16;
Nz = 16;
delta = 6;
UHub = 11.4;
IECturbC = 'A';
HubHt = 90;
...
1
vote
1answer
382 views
how to find difference between two vectors as a function of time-lag in MATLAB
First time posting a question here! Will happily take any advice||criticism I can get.
We have two vectors: v1 and v2. Assume length(v1) >> length(v2). I move a window of size length(v2) along the ...
1
vote
1answer
98 views
Vectorising a for loop
Is it possible to vectorise the following function, (f)?
I have a vector x for which I want to maximise the output value of the function f by altering p.
But the function is quite slow as it is not ...
6
votes
3answers
110 views
How to vectorize this for loop matlab
divisible = 0;
low = input('Start Value: ');
high = input('End Value: ');
divisor = input('Divisor: ');
mask = mod([low:high],divisor);
for index = low:high
if mask(index) == 0
...
2
votes
1answer
93 views
Calling function that summarizes data frame based on parameter and applying to data frame and nls
I am working with weather data and utility bills and am trying estimate a nonlinear regression model.
I am coming up with a problem. The function I call to calculate the weather statistics, Heating ...
2
votes
1answer
457 views
Clang produces slower code when AVX is enabled?
I use Xcode 4.5.2 with "Apple LLVM Compiler 4.1" (Clang).
I tried to compile a code which heavily relies on SSE intrinsics with AVX enabled (no _mm256* functions and no __m256 variables yet) and got ...
0
votes
2answers
324 views
How to sum __m256 horizontally?
I would like to horizontally sum the components of a __m256 vector using AVX instructions.
In SSE I could use
_mm_hadd_ps(xmm,xmm);
_mm_hadd_ps(xmm,xmm);
to get the result at the first component of ...
3
votes
2answers
224 views
Is _mm_broadcast_ss faster than _mm_set1_ps?
Is this code
float a = ...;
__m256 b = _mm_broadcast_ss(&a)
always faster than this code
float a = ...;
_mm_set1_ps(a)
?
What if a defined as static const float a = ... rather than float a ...
2
votes
1answer
90 views
Vectorizing a function: cumsum with a decay parameter
I've written a variation of the cumsum function, where I multiply the previous sum by a decay factor before adding the current value:
decay <- function(x, decay=0.5){
for (i in 2:length(x)){
...
2
votes
2answers
194 views
Union with __m256 and array of two __m128
Can I have a union like this
union eight_floats_t
{
__m256 a;
__m128 b[2];
};
eight_floats_t eight_floats;
to have an instant access to the two 128 bit parts of a 256 bit register?
...
0
votes
2answers
29 views
MATLAB: vectorized indexing confused with vector*matrix
I have a calculation that I want to perform element by element.
foreach i from i=1 to i=N
RES_i = det(A - V_i * I) // notice V_i and RES_i are SCALARS
where for example A is 3x3 , I is 3x3, V ...
1
vote
1answer
78 views
Can vectorization be done? will it do any good?
This function here is eating a lot of time in my run. But what is see is the most of the time goes in the inbuilt function polyarea. Can this code be vectorized for performance boost?
Profiler ...
2
votes
1answer
158 views
Inner if statement kills vectorization
I have the following for loop. When I switch on the type array the code doesn't vectorize. When I fix type to '1' gcc performs a primitize vectorization vectorizes. Does anybody have any ...
4
votes
2answers
203 views
Matlab: Convert elements larger (smaller) than 1 (-1) into a sequence of 1 (-1)
UPDATE: I've done some testing, and the solution of Jonas is the fastest for a range of different size input vectors. In particular, as angainor points out, the solution scales up to large sizes ...
5
votes
1answer
158 views
Why is numpy vectorized function apparently called an extra time?
I have a numpy object array containing several lists of index numbers:
>>> idxLsts = np.array([[1], [0, 2]], dtype=object)
I define a vectorized function to append a value to each list:
...
4
votes
3answers
194 views
Avoiding loops in MatLab code (barycentric weights)
After having learned basic programming in Java, I have found that the most difficult part of transitioning to MatLab for my current algorithm course, is to avoid loops. I know that there are plenty ...
3
votes
2answers
102 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 ...
2
votes
2answers
332 views
Automatic vectorization GCC
I'm trying to get GCC 4.7 to automatically vectorize some parts of my code to provide a speed increase, however, it seems difficult to do so.
Here some code that I would like to vectorize:
void ...
3
votes
2answers
141 views
Is vectorizing this triple for loop in Python / Numpy possible?
I am trying to speed up my code which currently takes a little over an hour to run in Python / Numpy. The majority of computation time occurs in the function pasted below.
I'm trying to vectorize Z, ...
8
votes
5answers
148 views
Taking the max of contiguous matrix chunks in MATLAB
Given the matrix:
a =
1 1 2 2
1 1 2 2
3 3 4 4
3 3 4 4
I would like to get the following four 2x2 matrices:
a1 =
1 1
1 1
a2 =
2 2
2 2
a3 =
...
1
vote
2answers
82 views
Vectorize glm and extract all information
I have a data set "keywords" with several groups. I want to apply glm to each group individually to create a list of glm fits with one fit for each group.
I could do this with a for loop, but thats ...
3
votes
1answer
357 views
Improving performance of interpolation (Barycentric formula)
I have been given an assignment in which I am supposed to write an algorithm which performs polynomial interpolation by the barycentric formula. The formulas states that:
p(x) = (SIGMA_(j=0 to n) ...
5
votes
2answers
114 views
efficiently replacing data frame with cumulative frequency
I'm trying to write a program that takes a large data frame and replaces each column of values by the cumulative frequency of those values (sorted ascending). For instance, if the column of values ...
0
votes
1answer
127 views
Calculate diff of a numpy array using custom function instead of subtraction
I am working with an array created from a list of geographical coordinates describing a GPS trajectory. The data is like this:
[[-51.203018 -29.996149]
[-51.203018 -29.99625 ]
[-51.20266 ...
1
vote
2answers
132 views
Efficient function to return varying length vector from lookup table
I have three data sources:
types<-c(1,3,3)
places<-list(c(1,2,3),1,c(2,3))
lookup.counts<-as.data.frame(matrix(runif(9,min=0,max=10),nrow=3,ncol=3))
...
3
votes
1answer
94 views
How to build “vectorized” building blocks using itertools module?
The recipe section of itertools docs begins with this text:
The extended tools offer the same high performance as the underlying
toolset. The superior memory performance is kept by processing
...
6
votes
3answers
170 views
Matlab cumsum reset at NaN?
If I have a vector of either 1's or NaN's like this:
[1 1 1 NaN 1 1 NaN 1 1 1 1]
How can I reset the cumsum to zero at the location of the NaNs like below:
[1 2 3 0 1 2 0 1 2 3 4]
Ideally I ...
1
vote
1answer
264 views
OpenCL kernel not vectorized
I am trying to build a kernel to do parallel string search. To this end I tend to use a finite state machine. The transition table of the fsm is in the kernel argument states. The code:
__kernel ...
-2
votes
2answers
107 views
Improve Performance of Matlab Function
I would like to improve one of my simple matlab functions.
Is there any arithmetic way to implement this function? I think that would perform much better.
function img_output = cutchannels(img_input, ...

