sam20908 / mpp

A modern C++ matrix library
https://sam20908.github.io/mpp-doc/
Apache License 2.0
8 stars 0 forks source link

Make matrix multiplication parallel #111

Open sam20908 opened 3 years ago

sam20908 commented 3 years ago

And use block matrix multiplication?

sam20908 commented 3 years ago

Note to self: this is the reason inverse is so slow!

sam20908 commented 3 years ago

We currently only have operator* occurrence that uses matrix multiplication, but that doesn't implement the full matrix multiplication algorithm. When we do implement an actual algorithm, we need to keep note of this.