We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b09f6bc commit 7ebf75eCopy full SHA for 7ebf75e
src/cpu/acl/matmul/acl_lowp_matmul.cpp
@@ -16,6 +16,8 @@
16
17
#include "cpu/acl/matmul/acl_lowp_matmul.hpp"
18
19
+#include "src/cpu/CpuTypes.h"
20
+
21
namespace dnnl {
22
namespace impl {
23
namespace cpu {
@@ -203,11 +205,11 @@ status_t acl_lowp_matmul_t::pd_t::init_scratchpad(
203
205
const memory_desc_wrapper dst_d(&dst_md_);
204
206
if (almc_.use_dst_acc) {
207
scratchpad.book(memory_tracking::names::key_matmul_dst_in_acc_dt,
- dst_d.nelems(), sizeof(float32_t));
208
+ dst_d.nelems(), sizeof(arm_compute::float32_t));
209
}
210
if (almc_.use_cast_acc) {
211
scratchpad.book(memory_tracking::names::key_matmul_dst_cast_acc,
212
213
214
return status::success;
215
0 commit comments