japaric-archived / linalg.rs

[INACTIVE]
Apache License 2.0
29 stars 1 forks source link

Implement lazy matrix multiplication #19

Closed japaric closed 9 years ago

japaric commented 9 years ago

Namely: A += alpha * B * C should reduce to a single gemm call.

(Right now B * C gets eagerly evaluated, creating a temporary)