Tagged Questions
For questions related to matrix multiplication, especially implementation. Mathematical questions should consider the linear algebra tag.
104
votes
10answers
3k views
Why huge performance hit 2048x2048 array versus 2047x2047?
I am making some matrix multiplication benchmarking, as previously mentioned in
Why is matlab so fast in matrix multiplication?
Now I've got another issue, when multiplying two 2048x2048 matrices, ...
30
votes
8answers
2k views
Why is MATLAB so fast in matrix multiplication?
I am making some benchmarks with CUDA, C++, C#, and Java, and using MATLAB for verification and matrix generation. But when I multiply with MATLAB, 2048x2048 and even bigger matrices are almost ...
11
votes
4answers
363 views
Matrix multiplication: Small difference in matrix size, large difference in timings
I have a matrix multiply code that looks like this:
for(i = 0; i < dimension; i++)
for(j = 0; j < dimension; j++)
for(k = 0; k < dimension; k++)
C[dimension*i+j] += ...
11
votes
4answers
203 views
Why is the performance of these matrix multiplications so different?
I wrote two matrix classes in Java just to compare the performance of their matrix multiplications. One class (Mat1) stores a double[][] A member where row i of the matrix is A[i]. The other class ...
11
votes
4answers
2k views
Why is matrix multiplication in .NET so slow?
I don't quite understand what makes matrix multiplication in C#/.NET (and even Java) so slow.
Take a look at this benchmark (source): Trying to find an updated benchmark.
C#'s integer and double ...
11
votes
14answers
532 views
How to efficiently store a matrix with highly-redundant values
I have a very large matrix (100M rows by 100M columns) that has a lots of duplicate values right next to each other. For example:
8 8 8 8 8 8 8 8 8 8 8 8 8
8 4 8 8 1 1 1 1 1 8 8 8 8
8 4 8 8 1 1 1 1 ...
9
votes
3answers
211 views
Type-safe matrix multiplication
After the longwinded discussion at Write this Scala Matrix multiplication in Haskell, I was left wondering...what would a type-safe matrix multiplication look like? So here's your challenge: either ...
7
votes
7answers
810 views
Speed up matrix multiplication by SSE (C++)
I need to run a matrix-vector multiplication 240000 times per second. The matrix is 5x5 and is always the same, whereas the vector changes at each iteration. The data type is float. I was thinking of ...
7
votes
4answers
220 views
Creating and manipulating three dimensional matrices in Matlab
I'm desperately trying to avoid a for loop in Matlab, but I cannot figure out how to do it. Here's the situation:
I have two m x n matrices A and B and two vectors v and w of length d. I want to ...
7
votes
7answers
394 views
Solving floating-point rounding issues C++
I develop a scientific application (simulation of chromosomes moving in a cell nucleus). The chromosomes are divided in small fragments that rotate around a random axis using 4x4 rotation matrices.
...
7
votes
1answer
281 views
What is R's multidimensional equivalent of rbind and cbind?
When working with matrices in R, one can put them side-by-side or stack them top of each other using cbind and rbind, respectively. What is the equivalent function for stacking matrices or arrays in ...
7
votes
6answers
1k views
Speed up matrix multiplication
I'm performing matrix multiplication with this simple algorithm. To be more flexible I used objects for the matricies which contain dynamicly created arrays.
Comparing this solution to my first one ...
6
votes
1answer
116 views
How do you combine X, Y, and Z rotations in a model's local space (not global)?
I am starting out on Molehill and am having a lot of problems grasping Matrix3D.
My first problem is how to manage a Matrix3D that describes a single model's orientation.
I use ...
6
votes
3answers
384 views
compute only diagonals in matrix product in octave
Is there a way in octave to compute and store only the diagonal of a matrix product?
Basically like doing vector = diag(A*B);
I don't care about any of the values of A*B except those on the ...
5
votes
2answers
235 views
Rectangular/lattice multiplication
I am trying to implement the rectangular/lattice multiplication in Java. for those who don't know, this is a short tutorial.
I tried some methods wherein I used a single array to store multiplication ...
5
votes
5answers
913 views
Faster Matrix Multiplication in C#
I have as small c# project that involves matrices. I am processing large amounts of data by splitting it into n-length chunks, treating the chucks as vectors, and multiplying by a Vandermonde** ...
5
votes
3answers
1k views
Efficient multiplication of very large matrices in MATLAB
I don't have enough memory to simply create a diagonal D-by-D matrix, since D is large. I keep getting an 'out of memory' error.
Instead of performing M x D x D operations in the first ...
5
votes
3answers
513 views
Parallelizing the element wise multiplication of two matrices in F#
I'm trying to parallelize the element by element multiplication of two matrices in F#. I can't quite figure it out thought. I keep trying to create tasks but it never wants to compile. My non-working ...
4
votes
4answers
148 views
Why does the order of loops in a matrix multiply algorithm affect performance?
I am given two functions for finding the product of two matrices:
void MultiplyMatrices_1(int **a, int **b, int **c, int n){
for (int i = 0; i < n; i++)
for (int j = 0; j < n; ...
4
votes
1answer
197 views
python matrix multiplication: how to handle very large matrices?
a = numpy.zeros((17770,5))
b = numpy.zeros((5,20000))
ma = numpy.matrix(a)
mb = numpy.matrix(b)
That is, ma.shape = (17770,5), mb.shape = (5,20000), both are numpy.matrix.
I need ma*mb. But I ...
4
votes
2answers
139 views
product of three matrices ends up an odd block matrix?
In the following bit of mathematica code
a1 = {{0, -I}, {I, 0}}
a2 = {{0, 1}, {1, 0}}
a3 = {{1, 0}, {0, -1}}
c = I*a1*a2 // MatrixForm
d = c*a3 // MatrixForm
The display of d shows up as a two by ...
4
votes
3answers
684 views
Problem with MPI matrix-matrix multiply: Cluster slower than single computer
I code a small program using MPI to parallelize matrix-matrix multiplication. The problem is: When running the program on my computer, it takes about 10 seconds to complete, but about 75 seconds on a ...
4
votes
1answer
470 views
Receiving transformed mouse event data from DOM objects with a CSS 3D transform
Is there currently any data in a javascript mouse event that would allow me to easily find or calculate a mouse position relative to the 3D space of a transformed element?
To illustrate visually,
...
4
votes
2answers
267 views
OpenGL point position after rendering (3d -> 2d)
I've got an OpenGL scene with some figures on it. Can you tell me what I need to do to calculate figures apexes positions after "rendering"? I know I probably need to manual multiply some matrices, ...
4
votes
4answers
844 views
Matrix multiplication with Numpy
Assume that I have an affinity matrix A and a diagonal matrix D. How can I compute the Laplacian matrix in Python with nympy?
L = D^(-1/2) A D^(1/2)
Currently, I use L = D**(-1/2) * A * D**(1/2). Is ...
4
votes
2answers
419 views
Multithreaded Multiplication of Large Non-sparse, Non-square Matrices in C/C++
All,
I'm looking for recommendations for C or C++ libraries (preferably open source) that use multi-threaded techniques to multiply large, non-square, (e.g. 65536xn in size where n < 65536) ...
4
votes
4answers
1k views
java matrix-multiplication (FAST)
I have to multiply 2 (most of the times) sparse matrix.
Those matrix are pretty bit (about 10k*10k) and i've a two Xeon Quad core and just one thread for this job?
is there any fast library for ...
3
votes
2answers
82 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, ...
3
votes
1answer
177 views
Javascript Matrix Calculator with HTML form
I have a website that teaches students finite math http://finitehelp.com.
On the site I have a calculator that does combinations and permutations and now I am trying to include a matrix calculator ...
3
votes
3answers
267 views
MATLAB: How to vector-multiply two arrays of matrices?
I have two 3-dimensional arrays, the first two dimensions of which represent matrices and the last one counts through a parameterspace, as a simple example take
A = repmat([1,2; 3,4], [1 1 4]);
...
3
votes
1answer
204 views
Erlang Matrix Library
I'm looking for a robust library to handle matrices in Erlang. Nothing fancy, just efficient handling of multiplication and basic operations. I could do that with lists etc. but I'm sure my ...
3
votes
1answer
195 views
find the dot product of sub-arrays in numpy
In numpy, the numpy.dot() function can be used to calculate the matrix product of two 2D arrays. I have two 3D arrays X and Y (say), and I'd like to calculate the matrix Z where Z[i] == ...
3
votes
7answers
500 views
How to optimize matrix multiplication operation
I need to perform a lot of matrix operations in my application. The most time consuming is matrix multiplication. I implemented it this way
template<typename T>
Matrix<T> ...
3
votes
1answer
696 views
Sparse Matrix-Vector Multiplication on Cuda - performance optimization
I am trying to do a Matrix-Vector Multiplication on GPU (using Cuda).
I loaded the matrix on my C++ code (CPU), and then I perform the matrix-vector multiplication using cuda. I am also using shared ...
3
votes
2answers
157 views
Questions About Threads
I am new to thread programing and I have a conceptual problem. I am doing matrix multiplication as a project for my class. However, I do it without using threads, and then using threads to compute ...
3
votes
2answers
329 views
3D Affine transformation problem in raytracing
All,
I am writing a rather non conventional ray tracer to calculate heat transfer properties of various objects in a scene. In this ray tracer random rays are shot from the surface of my primitive ...
3
votes
4answers
411 views
Is there are a good double-precision small matrix SIMD library for x86?
I'm looking for a SIMD library focused small (4x4) matrix operations for graphics. There's lots of single precision ones out there, but I need to support both single and double precision.
I've looked ...
3
votes
3answers
929 views
Multiplying two 3x3 matrices in C
I am trying to multiply two 3x3 matrices. The first 2 numbers in the first
and second row are the only correct answer. What am I doing
wrong? Is the stuff I need declared in mult_matrices?
#include ...
3
votes
2answers
193 views
Help me solve this bug with my ray tracer
I'm not going to post any code for this question because it would require way too much context, but I shall explain conceptually what I'm doing.
I'm building a simple ray tracer that uses affine ...
3
votes
5answers
2k views
CUDA determining threads per block, blocks per grid
I'm new to the CUDA paradigm. My question is in determining the number of threads per block, and blocks per grid. Does a bit of art and trial play into this? What I've found is that many examples have ...
3
votes
2answers
723 views
Multithreaded Matrix Multiply Help in C
I have a Matrix multiply code that does matrix multiply by the following
Where Matrix A * Matrix B = Matrix C
for(j=1;j<=n;j++) {
for(l=1;l<=k;l++) {
for(i=1;i<=m;i++) {
C[i][j] = ...
3
votes
5answers
768 views
Programming problem - Game of Blocks
maybe you would have an idea on how to solve the following problem.
John decided to buy his son Johnny some mathematical toys. One of his most favorite toy is blocks of different colors. John has ...
3
votes
1answer
575 views
What is Chain Matrix Multiplication?
I am trying to understand what is a chain matrix multiplication and how it is different from a regular multiplication. I have checked several sourcers yet all seem to be very academically explained ...
3
votes
1answer
321 views
Matrix multiplication using pairs
I am looking into alternate ways to do a Matrix Multiplication. Instead of storing my matrix as a two-dimensional array, I am using a vector such as
vector<pair<pair<int,int >,int > ...
3
votes
3answers
2k views
iPhone matrix multiplication and inversion
I'm trying to apply a Kalman filter to the data coming out from the iPhone accelerometer. I need to perform matrix multiplication and inversion as fast as possible, so I was curious about the ...
2
votes
1answer
65 views
iPhone Large Matrix Multiplication on GPU
I've designed a learning AI for use in a iPad game but its prototype is written in matlab. I need to perform several actions such as: (capital denotes matrix)
A = B > c;
A = B * C;
A = B' * C;
A = ...
2
votes
2answers
48 views
Multiply columns of a matrix with 2d matrix slices of a 3d matrix in MatLab
Basically, I want to perform the following computation:
G is m x n x k
S is n x k
Answer=zeros(m,d)
for Index=1:k
Answer(:,Index)=G(:,:,Index)*S(:,Index)
end
So, answer ...
2
votes
2answers
111 views
Fortran transpose of matrix doesn't work on non-2D arrays
Say I have a 3D array, A(1:3,1:4,1:5), and I only want to deal with part of it, e.g.:
real :: A(1:3,1:4,1:5), B(1:5,1:2)
real, allocatable :: C(:,:)
allocate(C(size(A,1),size(B,2)))
C = ...
2
votes
0answers
139 views
LWJGL - Problems implementing 'roll' in a 6DOF Camera using quaternions and a translation matrix
I've spent a couple weeks on this issue and can't seem to find a proper solution and need some advice.
I'm working on creating a Camera class using LWJGL/Java, and am using Quaternions to handle ...
2
votes
5answers
181 views
fast matrix multiplication in Matlab
I need to make a matrix/vector multiplication in Matlab of very large sizes: "A" is an 655360 by 5 real-valued matrix that are not necessarily sparse and "B" is a 655360 by 1 real-valued vector. My ...