mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
update gemm changeset list
This commit is contained in:
parent
cd3bbffa73
commit
4c8eeeaed6
@ -199,7 +199,7 @@ void benchmark_t::run()
|
||||
|
||||
double starttime = timer.getCpuTime();
|
||||
for (int i = 0; i < iters_at_a_time; i++) {
|
||||
dst[matrix_index] = lhs[matrix_index] * rhs[matrix_index];
|
||||
dst[matrix_index].noalias() = lhs[matrix_index] * rhs[matrix_index];
|
||||
matrix_index++;
|
||||
if (matrix_index == matrix_pool_size) {
|
||||
matrix_index = 0;
|
||||
|
@ -40,3 +40,4 @@ before-evaluators
|
||||
6937:c8c042f286b2 # avoid redundant pack_rhs
|
||||
6981:7e5d6f78da59 # dynamic loop swapping
|
||||
6984:45f26866c091 # rm dynamic loop swapping, adjust lhs's micro panel height to fully exploit L1 cache
|
||||
6986:a675d05b6f8f # blocking heuristic: block on the rhs in L1 if the lhs fit in L1.
|
||||
|
Loading…
Reference in New Issue
Block a user