We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60cec8 commit e9b1649Copy full SHA for e9b1649
mlx_lm/_version.py
@@ -1,3 +1,3 @@
1
# Copyright © 2023-2025 Apple Inc.
2
3
-__version__ = "0.26.1"
+__version__ = "0.26.2"
mlx_lm/models/gemma3n.py
@@ -476,7 +476,7 @@ def __call__(
476
per_layer_inputs = self.project_per_layer_inputs(h, per_layer_inputs)
477
478
if cache is None:
479
- cache = [None] * len(self.layers)
+ cache = self.make_cache()
480
481
if mask is None:
482
full_mask = create_attention_mask(
0 commit comments