Skip to content

Commit

Permalink
set float32_t namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
alvoron committed Dec 20, 2024
1 parent a4d931d commit 8827d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/acl/matmul/acl_lowp_matmul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,11 @@ status_t acl_lowp_matmul_t::pd_t::init_scratchpad(
const memory_desc_wrapper dst_d(&dst_md_);
if (almc_.use_dst_acc) {
scratchpad.book(memory_tracking::names::key_matmul_dst_in_acc_dt,
dst_d.nelems(), sizeof(float32_t));
dst_d.nelems(), sizeof(arm_compute::float32_t));
}
if (almc_.use_cast_acc) {
scratchpad.book(memory_tracking::names::key_matmul_dst_cast_acc,
dst_d.nelems(), sizeof(float32_t));
dst_d.nelems(), sizeof(arm_compute::float32_t));
}
return status::success;
}
Expand Down

0 comments on commit 8827d47

Please sign in to comment.