Skip to content

Commit

Permalink
Fix cache issue with strides
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffburdick committed Aug 3, 2023
1 parent 3bc8548 commit fd3b51f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/matx/transforms/matmul.h
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,9 @@ struct MatMulParamsKeyEq {
return l.m == t.m && l.n == t.n && l.k == t.k && l.a_rows == t.a_rows &&
l.b_rows == t.b_rows && l.c_rows == t.c_rows &&
l.a_cols == t.a_cols && l.b_cols == t.b_cols &&
l.c_cols == t.c_cols && l.stream == t.stream && l.lda == t.lda &&
l.c_cols == t.c_cols &&
l.astride == t.astride && l.bstride == t.bstride && l.cstride == t.cstride &&
l.stream == t.stream && l.lda == t.lda &&
l.ldb == t.ldb && l.ldc == t.ldc && l.batch == t.batch &&
l.prov == t.prov && l.dtype == t.dtype && l.opA == t.opA &&
l.opB == t.opB;
Expand Down

0 comments on commit fd3b51f

Please sign in to comment.