Skip to content

Commit 58eb5d6

Browse files
committed
softmax: remove pragma unroll directive
1 parent 7d90d57 commit 58eb5d6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ggml/src/ggml-sycl/softmax.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ static void soft_max_f32(const float * x, const T * mask, float * dst, const int
3232
float *vals = vals_smem ? buf + sycl::max(nwarps, WARP_SIZE) : dst + rowx * ncols;
3333
float max_val = -INFINITY;
3434

35-
#pragma unroll
3635
for (int col0 = 0; col0 < ncols; col0 += block_size) {
3736
const int col = col0 + tid;
3837

0 commit comments

Comments
 (0)