Skip to content

Commit f795e9c

Browse files
author
Ljubomir Josifovski
committed
fix compile
1 parent 5bb250c commit f795e9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test-backend-ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3797,7 +3797,7 @@ struct test_gla : public test_case {
37973797
ggml_tensor * v = ggml_new_tensor(ctx, type, 3, std::vector<int64_t>{ head_size, head_count, n_tokens }.data());
37983798
ggml_tensor * g = ggml_new_tensor(ctx, type, 3, std::vector<int64_t>{ head_size, head_count, n_tokens }.data());
37993799
ggml_tensor * s = ggml_new_tensor(ctx, type, 2, std::vector<int64_t>{ head_size * head_size * head_count, n_seqs }.data());
3800-
ggml_tensor * out = ggml_gated_linear_attn(ctx, k, v, q, g, s, pow(head_size, -0.5));
3800+
ggml_tensor * out = ggml_gated_linear_attn(ctx, k, v, q, g, s, pow(head_size, -0.5), false);
38013801
return out;
38023802
}
38033803
};

0 commit comments

Comments
 (0)