Skip to content

Commit 54874de

Browse files
committed
remove the max simd.
1 parent f35ea1c commit 54874de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ggml/src/ggml-fp8.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ static inline void conv(const float* x, bloc_fp8<E, QK>* y, int64_t size) {
138138
const auto qk_size = size / QK;
139139
for (int64_t q=0; q<qk_size; ++q) {
140140
float m = 0;
141-
#pragma omp simd reduction(max:m)
141+
// @ voir si c'est lui qui pose probleme et si c'est sur toutes les target
142+
// #pragma omp simd reduction(max:m)
142143
for (int64_t i=0; i<QK; i++) {
143144
m = std::max(std::abs(x[q*QK+i]),m);
144145
}

0 commit comments

Comments
 (0)