Skip to content

Commit

Permalink
[CPU]Fix ARM64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangYiIntel committed Nov 25, 2024
1 parent 9f13e4e commit 5d67a37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ static float dot_product(TA* a, TB* b, size_t n, float* scale, float* zp, float*
}

#if defined(__ARM_FEATURE_FP16_VECTOR_ARITHMETIC)
static ov::float16 dot_product_fp16(ov::float16* a, ov::float16* b, size_t n, float* scale, float* zp, float* head_sum, size_t group_size) {
static ov::float16 dot_product_fp16(ov::float16* a, ov::float16* b, size_t n, float* scale, float* zp, float* head_sum, size_t group_size = 0) {
size_t i = 0;
ov::float16 sum = 0.0f;
auto vsum0 = vdupq_n_f16(0.0f);
Expand Down

0 comments on commit 5d67a37

Please sign in to comment.