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
In compress and estimate_gs we encounter cases where we need to concatenate the basis snapshot vectors into one matrix in order to perform matrix multiplications.
The questions is whether it is better to:
use hcat and then use BLAS Level 3 operations but allocate more memory
or perform explicit matrix-vector BLAS Level 2 operations but perform less allocations
We need to benchmark this for realistic cases.
The text was updated successfully, but these errors were encountered:
In
compress
andestimate_gs
we encounter cases where we need to concatenate the basis snapshot vectors into one matrix in order to perform matrix multiplications.The questions is whether it is better to:
hcat
and then use BLAS Level 3 operations but allocate more memoryWe need to benchmark this for realistic cases.
The text was updated successfully, but these errors were encountered: