From 7bdce4c07896cb13187c9f37a2f882fdb809e35a Mon Sep 17 00:00:00 2001 From: Foke Singh Date: Thu, 23 Oct 2025 17:54:48 +0000 Subject: [PATCH] =?UTF-8?q?Add=20Llama=E2=80=AF3.1=20example=20showcasing?= =?UTF-8?q?=20optional=20head=E2=80=91dimension=20support.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/llama/llama.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llama/llama.zig b/examples/llama/llama.zig index 5d0e87d..606598f 100644 --- a/examples/llama/llama.zig +++ b/examples/llama/llama.zig @@ -18,7 +18,7 @@ pub const LlamaLM = struct { int: u32, ints: []u32, }), - head_dim: ?u32, + head_dim: ?u32 = null, hidden_size: u32, num_hidden_layers: u32, num_attention_heads: u32,