Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TURBOQUANT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b10018-1.1.0
b10018-1.1.1
6 changes: 5 additions & 1 deletion ggml/src/ggml-backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,11 @@ static bool ggml_is_view_op(enum ggml_op op) {
#endif

#ifndef GGML_SCHED_MAX_SPLIT_INPUTS
#define GGML_SCHED_MAX_SPLIT_INPUTS 30
// 30 upstream. Gemma 4 E-series feeds a per-layer embedding input into every
// block; with partial offload (small-VRAM Vulkan + CPU) each of them becomes
// a split input, so a 30+-layer model trips the assert at split creation.
// 128 covers the deepest current target (31B dense) with headroom.
#define GGML_SCHED_MAX_SPLIT_INPUTS 128
#endif

#ifndef GGML_SCHED_MAX_COPIES
Expand Down
Loading