diff --git a/src/model/te/llm.hpp b/src/model/te/llm.hpp index 03deb610a..b289328ef 100644 --- a/src/model/te/llm.hpp +++ b/src/model/te/llm.hpp @@ -1377,7 +1377,7 @@ namespace LLM { x = ggml_ext_cont(ctx->ggml_ctx, kqv); x = ggml_reshape_3d(ctx->ggml_ctx, x, head_dim * num_heads, n_token, N); } else { - x = ggml_ext_attention_ext(ctx, q, k, v, num_heads, attention_mask, true, false); // [N, n_token, hidden_size] + x = ggml_ext_attention_ext(ctx, q, k, v, num_heads, attention_mask, true, ctx->flash_attn_enabled); // [N, n_token, hidden_size] } x = out_proj->forward(ctx, x); // [N, n_token, hidden_size]