tetrus-ai / tetrus

Tetris but in Rust. Also AI to play that.
GNU Affero General Public License v3.0
2 stars 0 forks source link

Investigate linear algebra library in rust #5

Open cohen990 opened 6 years ago

cohen990 commented 6 years ago

For calculating the output of the network and for applying the evolution or back propagation, matrix algebra is for certain the fastest way.

I would say that implementing our own linear algebra package is beyond the scope of this project and we should use something ready made.

http://nalgebra.org/ is purportedly as fast as cgmath so I think it's a good place to start looking