This repo contains a Rust program with Strassen’s algorithm, recursive matrix multiplication, and iterative matrix multiplication. There are also some experiments investigating the optimal base case ...
Strassen's Matrix-Multiplication algorithm. An implemetation of Strassen's Matrix-Multiplication algorithm with SIMD AVX. Also contains implemetation of MPI and CUDA of native matrix multiplication ...
Abstract: Strassen's algorithm has fascinated as a popular recursive algorithm for square matrix multiplication with the complexity of O(n 2.807) in many scientific applications since 1969. However, ...