We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc8548 commit fd3b51fCopy full SHA for fd3b51f
include/matx/transforms/matmul.h
@@ -997,7 +997,9 @@ struct MatMulParamsKeyEq {
997
return l.m == t.m && l.n == t.n && l.k == t.k && l.a_rows == t.a_rows &&
998
l.b_rows == t.b_rows && l.c_rows == t.c_rows &&
999
l.a_cols == t.a_cols && l.b_cols == t.b_cols &&
1000
- l.c_cols == t.c_cols && l.stream == t.stream && l.lda == t.lda &&
+ l.c_cols == t.c_cols &&
1001
+ l.astride == t.astride && l.bstride == t.bstride && l.cstride == t.cstride &&
1002
+ l.stream == t.stream && l.lda == t.lda &&
1003
l.ldb == t.ldb && l.ldc == t.ldc && l.batch == t.batch &&
1004
l.prov == t.prov && l.dtype == t.dtype && l.opA == t.opA &&
1005
l.opB == t.opB;
0 commit comments