You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
? 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
The text was updated successfully, but these errors were encountered: