Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions include/ideep/operators/matmul.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,9 @@ struct matmul_forward : public dnnl::matmul,
dst_desc,
op_attr,
with_bias,
#ifdef __aarch64__
weights.get_hash(),
#endif
omp_get_max_threads());
#ifdef __aarch64__
auto pd_pair = fetch_or_create(key, [&]() {
Expand Down Expand Up @@ -1219,6 +1222,9 @@ struct matmul_forward : public dnnl::matmul,
dst_desc,
op_attr,
with_bias,
#ifdef __aarch64__
weights.get_hash(),
#endif
omp_get_max_threads());

// Create pd and primitive
Expand Down