All Questions
4 questions
5
votes
2
answers
5k
views
Multithreaded Matrix Multiplication in C++, improving efficiency?
Here is a very simple Matrix Multiplication console application using multiple threads (one per row), I'm just looking for feedback to keep improving :) thank you in advance
...
5
votes
1
answer
324
views
Getting a transpose of a matrix of size of n*n where n=2^m using multithreading
The following is a c++ source code to get a matrix (std::vector<std::vector<T>>) transpose in parallel.
The span is \$\Theta(\lg^2(n))\$ while the work ...
3
votes
0
answers
4k
views
Matrix multiplication project using multithreading in java
Below is my code of matrix multiplication in Java. It has both implementation of matrix multiplication- one without multi-threading and another one using multi-threading.
For multi-threading ...
4
votes
1
answer
1k
views
Multiplying square matrix with C pthreads (POSIX threads)
I'm a student, and I'm trying to make the product of two square matrix with some threads in the soup. I've already worked on some fast single-threaded product (with some cache-friendly tricks), and I'...