-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
We should use specific matrix types to enable possible optimizations. We have two problems here: how to create those types and how to implement expressions without assuming that user knows the exact type in each expression?
For example:
? result = f(A, B);
? here can be a general or a specific matrix type, depending on types of A and B, how f preserves those types and whether linear algebra toolkit implements it properly.
Types:
-
triangular
-
symmetric/Hermitian
-
tridiagonal(banded)
-
Eigen
-
Blaze
-
Armadillo
-
MTL4
Reactions are currently unavailable