Skip to content

Commit

Permalink
fixes dtype conflict in comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantPrabhuFujitsu committed Nov 26, 2024
1 parent 5057a7b commit cbff786
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ static float dot_product(TA* a, uint8_t* b, size_t n, float* scale, float* zp, f

template<typename T>
static void attn_reduce(T* dst, float* temp, size_t M, size_t S, size_t temp_stride) {
int i = 0;
size_t i = 0;
#if defined(HAVE_AVX512F)
for (; i + vec_len_f32_avx512 <= S; i+= vec_len_f32_avx512) {
auto* src = temp + i;
Expand Down

0 comments on commit cbff786

Please sign in to comment.