File tree Expand file tree Collapse file tree 5 files changed +26
-5
lines changed Expand file tree Collapse file tree 5 files changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,8 @@ bool llama_batch_allocr::init(
166
166
167
167
// note: tracking the other way around is not necessary for now
168
168
// seq_cpl[s0][s1] = true;
169
+
170
+ has_cpl = true ;
169
171
}
170
172
}
171
173
}
@@ -459,9 +461,17 @@ llama_ubatch llama_batch_allocr::split_simple(uint32_t n_ubatch) {
459
461
return ubatch_add (idxs, idxs.size (), false );
460
462
}
461
463
462
- llama_ubatch llama_batch_allocr::split_equal (uint32_t n_ubatch) {
464
+ llama_ubatch llama_batch_allocr::split_equal (uint32_t n_ubatch, bool sequential) {
465
+ if (sequential && has_cpl) {
466
+ LLAMA_LOG_ERROR (" %s: sequential split is not supported when there are coupled sequences in the input batch\n " , __func__);
467
+
468
+ return {};
469
+ }
470
+
463
471
std::vector<seq_set_t > cur_seq_set;
464
472
473
+ llama_seq_id last_seq_id = -1 ;
474
+
465
475
// determine the non-overlapping sequence sets participating in this ubatch
466
476
for (int32_t i = 0 ; i < batch.n_tokens ; ++i) {
467
477
if (used[i]) {
@@ -478,9 +488,16 @@ llama_ubatch llama_batch_allocr::split_equal(uint32_t n_ubatch) {
478
488
}
479
489
}
480
490
491
+ // accept only increasing sequence ids
492
+ if (sequential) {
493
+ add = add && (cur_seq_set.empty () || batch.seq_id [i][0 ] == last_seq_id + 1 );
494
+ }
495
+
481
496
if (add) {
482
497
cur_seq_set.push_back (seq_set[i]);
483
498
499
+ last_seq_id = batch.seq_id [i][0 ];
500
+
484
501
if (cur_seq_set.size () > n_ubatch) {
485
502
break ;
486
503
}
Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ class llama_batch_allocr {
69
69
llama_ubatch split_simple (uint32_t n_ubatch);
70
70
71
71
// make ubatches of equal-length sequences sets
72
- llama_ubatch split_equal (uint32_t n_ubatch);
72
+ // if sequential == true, the tokens in the ubatch will have increasing sequential sequence ids
73
+ llama_ubatch split_equal (uint32_t n_ubatch, bool sequential);
73
74
74
75
// sequence-set-wise split - each ubatch contains a single sequence-set
75
76
llama_ubatch split_seq (uint32_t n_ubatch);
@@ -112,6 +113,9 @@ class llama_batch_allocr {
112
113
using pos_set_t = std::set<llama_pos>;
113
114
using seq_cpl_t = std::vector<bool >;
114
115
116
+ // helper flag to quickly determine if there are any coupled sequences in the batch
117
+ bool has_cpl;
118
+
115
119
std::vector<pos_set_t > seq_pos; // seq_pos[s]: the set of positions in sequence s
116
120
std::vector<seq_cpl_t > seq_cpl; // seq_cpl[s0][s1]: if sequence s0 is coupled to sequence s1
117
121
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ llama_memory_context_ptr llama_kv_cache_unified_iswa::init_batch(llama_batch_all
135
135
136
136
std::vector<llama_ubatch> ubatches;
137
137
while (true ) {
138
- auto ubatch = balloc.split_equal (n_ubatch);
138
+ auto ubatch = balloc.split_equal (n_ubatch, false );
139
139
140
140
if (ubatch.n_tokens == 0 ) {
141
141
break ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ llama_memory_context_ptr llama_memory_hybrid::init_batch(llama_batch_allocr & ba
70
70
// if all tokens are output, split by sequence
71
71
ubatch = balloc.split_seq (n_ubatch);
72
72
} else {
73
- ubatch = balloc.split_equal (n_ubatch);
73
+ ubatch = balloc.split_equal (n_ubatch, false );
74
74
}
75
75
76
76
if (ubatch.n_tokens == 0 ) {
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ llama_memory_context_ptr llama_memory_recurrent::init_batch(llama_batch_allocr &
374
374
// if all tokens are output, split by sequence
375
375
ubatch = balloc.split_seq (n_ubatch);
376
376
} else {
377
- ubatch = balloc.split_equal (n_ubatch);
377
+ ubatch = balloc.split_equal (n_ubatch, false );
378
378
}
379
379
380
380
if (ubatch.n_tokens == 0 ) {
You can’t perform that action at this time.
0 commit comments