Tagged Questions
The strassen tag has no wiki summary.
6
votes
3answers
3k views
Strassen's algorithm for matrix multiplication
Can someone please explain strassen's algorithm for matrix multiplication in an intuitive way? I've gone through (well, tried to go through) the explanation in the book and wiki but it's not clicking ...
2
votes
2answers
172 views
Strassen algorithm not the fastest?
I copied strassen's algorithm from somewhere and then executed it. Here is the output
n = 256
classical took 360ms
strassen 1 took 33609ms
strassen2 took 1172ms
classical took 437ms
strassen 1 took ...
2
votes
3answers
247 views
Crossover Point: Strassen's Algorithm
Hey guys, I have searched quite a bit and from what it seems there is no relevant question. What I want to know is what is the optimal crossover point under which Strassen's Algorithm should stop the ...
2
votes
1answer
2k views
Strassen's Algorithm for Matrix multiplication c# implementation
I'm just doing a self-study of Algorithms & Data structures and I'd like to know if anyone has a C# (or C++) implementation of Strassen's Algorithm for Matrix Multiplication?
I'd just like to run ...
2
votes
2answers
138 views
How many floating-point operations for Strassen's algorithm for a matrix of size k x k?
I am trying to understand this analysis of Strassen's algorithm for multiply k x k matrices. But I am still not too sure how many operations are invovled. Can someone help clarify this?
0
votes
1answer
121 views
Why is my Strassen Matrix multiplier so fast?
As an experiment I implemented the Strassen Matrix Multiplication Algorithm to see if truly lead to faster code for large n.
http://ezekiel.vancouver.wsu.edu/~cs330/lectures/linear_algebra/mm/mm.c
...
0
votes
5answers
1k views
Matrix multiplication: Strassen vs. Standard
I tried to implement the Strassen algorithm for matrix multiplication with C++, but the result isn't that, what I expected. As you can see strassen always takes more time then standard implementation ...