-
-
Notifications
You must be signed in to change notification settings - Fork 644
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
optimize matrix operations using Strassen algorithm ? #1181
Comments
Hey I can do it and send a PR. |
Hi, that would be awesome honestly ! If you, don't replace the current multiply method, just add a thanks :) |
Absolutely! 🤟 |
indeed, we called it Matrix3d but yes it's a 4x4 matrix. Same for the Matrix2d one it's 3x3 matrix. can't disagree it's maybe a bit confusing :) |
- Multiplication using strassen's algorithm. - trying to close melonjs#1181
Hey 👋 |
Adding this one here, as it's quite interesting :
Strassen multiplication algorithm is faster, with a complexity of approximately O(n^2.8074) , compared to O(n^3) for standard multiplication algorithm.
Strassen Matrix multiplication is based on a divide and conquer-based approach, by diving matrix into smaller square matrix
https://www.topcoder.com/thrive/articles/strassenss-algorithm-for-matrix-multiplication
The text was updated successfully, but these errors were encountered: