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 ...
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 ...
2
votes
1answer
27 views
How can I define a vectroized function to make a list of 2 by 2 matrices?
I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have:
def f(d,n):
return scipy.mat([[1,d/n],[0,1]])
This works fine when d and n are scalar input. But if d and n ...
2
votes
1answer
63 views
Vectorize a for loop in which the input depends on the output
I have a complicated problem about vectorization of a dependence for loop, I would like to have some helps from you.
Let's X1 be a vector with length n1, X2 be a vector with length n2, F1 be a N1xn1 ...
2
votes
1answer
134 views
vectorizing a non-explicit function in Matlab and Octave
I want to vectorize a 3D function, but the function does not have an analytical expression. For instance, I can vectorize the function
F(x, y, z) = (sin(y)*x, z*y, x*y)
by doing something like
...
2
votes
1answer
452 views
Summation without a for loop [Matlab]
I have 2 matrices: V which is square MxM, and K which is MxN. Calling the dimension across rows x and the dimension across columns t, I need to evaluate the integral (i.e sum) over both dimensions of ...
2
votes
1answer
174 views
Do any JS implementations currently support (or have support on the roadmap for) fast, vectorized operations on Arrays or similar?
I'd like to do a bit of matrix/vector arithmetic in JavaScript, and was wondering if any browsers or other JS implementations actually have support for vectorized operations, for instance for quickly ...
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 ...
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
1answer
99 views
Matlab code runs too slow on three dimensional array
I'm trying to vectorize the following code:
% code before
% code before
% a lot of code before we got to the current comment
%
% houghMatrix holds some values
for i=1:n
for j=1:m
...
1
vote
1answer
265 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 ...
1
vote
1answer
149 views
Visual Studio 2012 : Qvec-report:2 link error
I'm trying to use /Qvec-report:2 with Visual Studio 2012 during compile to see which loops of my code have been auto-vectorized or not. However, I keep getting this error message:
LINK : warning ...
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
509 views
MATLAB: simultaneously append to multiple elements of a cell array
I want to append an item to multiple elements of a cell array, at once, in a loop over the items (to be appended). E.g.
nodes(nodesHere,1) = cellfun(@(x)[x items(i)], ...
0
votes
1answer
23 views
how can I vectorize setting the index values to one in Matlab?
I have the following loop that does what I need:
> whos Y
Name Size Bytes Class Attributes
Y 10x5000 400000 double
> whos y
...
0
votes
1answer
22 views
How do I convert a 2D numpy array into a 1D numpy array of 1D numpy arrays?
In other words, each element of the outer array will be a row vector from the original 2D array.
0
votes
1answer
50 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 ...
0
votes
1answer
66 views
how to reduce dimensionality of vector
I have a set of vectors. I'm working on ways to reduce a n-dimensional vector to a unary value (1-d), say
(x1,x2,....,xn) ------> y
This single value needs to be the characteristic value of the ...
0
votes
1answer
95 views
How to visualize a 2D array of Vectors in Java
I have a 2D array where each element is a fixed length vector. I'm using Java and need to visualize the 2D array in the form of a color matrix (as in Matlab). I want to visualize how the vectors in ...
0
votes
1answer
185 views
How to vectorize text file in mahout?
I'm having a text file with label and tweets .
positive,I love this car
negative,I hate this book
positive,Good product.
I need to convert each line into vector value.If i use ...
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 ...
0
votes
1answer
101 views
R assign several list elements the same object
I currently have a loop - well actually a loop in loop, in a simulation model which gets slow with larger numbers of individuals. I've vectorised most of it and made it a heck of a lot faster. But ...
3
votes
0answers
76 views
What's the difference between GCC builtin vectorization types and C arrays?
I have three functions a(), b() and c() that are supposed to do the same thing:
typedef float Builtin __attribute__ ((vector_size (16)));
typedef struct {
float values[4];
} Struct;
typedef ...
2
votes
0answers
161 views
Fast popcount on Intel Xeon Phi
I'm implementing an ultra fast popcount on Intel Xeon® Phi®, as it's a performance hotspot of various bioinformatics software.
I've implemented five pieces of code,
#if defined(__MIC__)
#include ...
2
votes
0answers
176 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 ...
2
votes
0answers
174 views
Vectorized adaptive quadrature of vector-valued function
I'm looking for a super duper numerical quadrature function. It should have the following three properties:
Adaptive - it automatically adjusts the density of sampling points to fit the integrand. ...
1
vote
0answers
49 views
How to perform an operation on a subset of elements in a Boost::uBlas::vector?
Suppose you have a long boost::numeric::ublas::vector and you want to perform an update operation on a subset of the elements. How many of the elements should be updated is somewhere between "all" or ...
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 ...
0
votes
0answers
34 views
Can't read float array into __m128
I'm fiddling around with vectorization (first time learner). The point of it is the see whether I can unroll a loop. I like to load four consecutive floats like this, see Seg fault.
el0 = ...
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 ...
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 ...
0
votes
0answers
33 views
Optimized 2D Convolution library in C for CPU?
I am doing convolutions with a large amount of small images ( 36*36 or so ) and small filters ( 3*3 to 5*5 ). So a FFT-based solution is not what I am looking for. Perhaps a highly optimized and tuned ...
0
votes
0answers
54 views
How to prevent Signal drifting when changing frequency
When I recreate a signal it seems to look great. But when I try and increase it's frequency (which is done in a for loop and the variable new_freq=2) it starts to drift.
See Image below (The top ...
0
votes
0answers
132 views
mahout Vector Creation using Map Reduce
I implemented a map reduce job that from a text document formatted as :
- id,val1,val2..valn
- 0,1,2,3,4
- 1,5,6,7,8
- 2,9,10,11,12
- 3,3,8,5,2
- 4,4,89,84,1
I used NamedVecTor to associate ...
0
votes
0answers
36 views
How can I vectorize the following piece of short code for Octave?
people!
I need to optimize my code for Octave removing loops. But I was n't quite successful.
There are two loop: one for lsode solver of differential equations and another in the end for calculating ...
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 ...
0
votes
0answers
59 views
Matlab: complex summations over an array
I'm trying to implement value iteration in Matlab but having troubles programming summations in a clean way.This is what I use right now:
problem.transition is a 92x92x5 matrix, with the amount of ...
0
votes
0answers
55 views
python where function on newaxis arrays
I have a class of the form
class Grid(object):
def __init__(self,
xmin=-5,xmax=5,nx=100,
ymin=-5,ymax=5,ny=100):
self.dx = (xmax-xmin)/nx
self.dy ...
0
votes
0answers
57 views
MATLAB: for-loop vectorization (logiacal values)
I would like to vectorize the following for-loops.
The idea is to record in the LT matrix the links specified in the NEc and FEc variables (logical variables of zeros and ones representing links).
LT ...
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
0answers
8 views
PDL: vectorization
A call of help to you Super Piddlers from a Riddler (Rookie
Piddler). As my start-up PDL project in the field of Machine Learning I am
aiming at converting/translating Mark Schmidt's UGM MATLAB ...
0
votes
0answers
25 views
Vectorize with bsxfun
How to vectorize this code using bsxfun? For loops on braces/cell arrays.
Dimensions:
nlf 4; nout 4;
KuuinvKuy 4x4 cell, each cell 50x650 double;
Kuuinv 1x4 cell, each cell 50x50 double;
Kyu 4x4 ...
0
votes
0answers
34 views
Avoiding reshape for Ode solver
I am trying to optimize the following code:
function y = dy(t,y,k,N)
y = reshape(y,[N,N,2,2]);
y = reshape([y(:,:,:,2) padarray(k.*(y(3:N,2:N-1,:,1) + y(1:N-2,2:N-1,:,1)...
+ y(2:N-1,3:N,:,1) + ...
0
votes
0answers
56 views
How to write to a Vector PDF file from my application without loosing the Positioning of elements present on my canvas
Here's a situation.
We have an application built on .net which is based on the idea of
creating banners for end-users. I have provided an area on my page where the
user can create his/her banners. ...
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 ...
0
votes
0answers
77 views
Autovectorize array of unvectorizable processes in VS 2012
Suppose you have the following code:
class Unit
{
private:
float _outDel = 0;
public:
float Process()
{
float rnd = rand();
float out = rnd + _outDel;
_outDel = ...
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 = ...
0
votes
0answers
559 views
Local linear regression (MATLAB) - Please check the vectorization! :)
Thanks for the help with my first question. I now have a new problem. This is still writing code for the project that my professor is thinking of, but now this involves writing code for local linear ...
0
votes
0answers
146 views
fastest way to fill a vector (SSE2) with a certain value. Templates friendly
I have this template class:
template<size_t D>
struct A{
double v_sse __attribute__ ((vector_size (8*D)));
A(double val){
//what here?
}
};
What's the best way to fill the ...
0
votes
0answers
466 views
sliding window in matlab to calculate CSD feature of MPEG 7
Hello I implemented the CSD in MATLAB but it is in a for loop currently and I would appreciate if anyone could suggest how to convert it into a matrix method to make it fast. I tried the commands ...

