sequence.rs 22.5 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! KV Cache Sequence Management for LLM Inference
//!
//! This module provides efficient management of token sequences and their associated KV cache blocks
//! for distributed LLM inference. It implements a shared block system where multiple requests can
//! reuse the same KV cache blocks for common token prefixes, significantly reducing memory usage.
//!
//! # Key Components
//!
//! - [`ActiveSequences`]: Single-threaded sequence manager that tracks active requests and their
//!   token sequences, managing shared KV cache blocks efficiently.
//!
//! - [`ActiveSequencesMultiWorker`]: Multi-threaded extension that distributes sequence management
//!   across multiple worker threads, enabling parallel processing of requests while maintaining
//!   consistency.
//!
//! # Architecture
//!
//! The system uses a block-based approach where token sequences are divided into fixed-size blocks.
//! Each block is identified by a hash of its contents, allowing for deduplication when multiple
//! requests share common prefixes (e.g., system prompts, few-shot examples).

37
use crate::kv_router::indexer::OverlapScores;
38
use crate::kv_router::indexer::WorkerId;
39
use crate::tokens::SequenceHash;
40
41
42
43
44
45
46
47
48
49
50
51
use derive_getters::Getters;
use std::collections::{HashMap, HashSet};
use std::sync::{mpsc, Arc};
use std::thread;
use std::time::Duration;

// TODO: use the common request_id if it exists in the repo
pub type RequestId = String;

/// A multi-request sequence manager that handles multiple active sequences with shared KV cache
#[derive(Debug, Getters)]
pub struct ActiveSequences {
52
    active_seqs: HashMap<RequestId, Vec<SequenceHash>>,
53

54
55
    prefill_tokens: HashMap<RequestId, usize>,

56
    unique_blocks: HashMap<SequenceHash, HashSet<RequestId>>,
57
58
59
60
61
62

    #[getter(copy)]
    block_size: usize,

    #[getter(copy)]
    active_blocks: usize,
63
64
65

    #[getter(copy)]
    active_tokens: usize,
66
67
68
69
70
71
72
73
74
75
}

impl ActiveSequences {
    /// Create a new SharedSequenceManager instance
    pub fn new(block_size: usize) -> Self {
        // TODO: make this not a hard req
        assert!(block_size > 1, "block_size must be greater than 1");

        Self {
            active_seqs: HashMap::new(),
76
            prefill_tokens: HashMap::new(),
77
78
79
            unique_blocks: HashMap::new(),
            block_size,
            active_blocks: 0,
80
            active_tokens: 0,
81
82
83
        }
    }

84
    fn add_block(&mut self, request_id: RequestId, block: &SequenceHash) {
85
86
87
        let is_new_block = !self.unique_blocks.contains_key(block);

        self.unique_blocks
88
            .entry(*block)
89
90
91
92
93
94
95
96
            .or_default()
            .insert(request_id.clone());

        if is_new_block {
            self.active_blocks += 1;
        }
    }

97
    fn remove_block(&mut self, request_id: &RequestId, block: &SequenceHash) {
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
        let Some(request_ids) = self.unique_blocks.get_mut(block) else {
            panic!("Cannot remove a block that does not exist.")
        };

        // Remove the unique block if no more requests using it
        request_ids.retain(|w| w != request_id);
        if request_ids.is_empty() {
            self.active_blocks -= 1;
            self.unique_blocks.remove(block);
        }
    }

    /// Add a new request with its initial tokens
    pub fn add_request(
        &mut self,
        request_id: RequestId,
114
115
        token_sequence: Vec<SequenceHash>,
        isl: usize,
116
        overlap: u32,
117
    ) -> usize {
118
        let prefill_tokens = self.new_tokens(isl, overlap);
119
120
121
122
        self.prefill_tokens
            .insert(request_id.clone(), prefill_tokens);
        self.active_tokens += prefill_tokens;

123
        for block in &token_sequence {
124
125
126
127
128
129
130
131
            self.add_block(request_id.clone(), block);
        }

        self.active_seqs.insert(request_id.clone(), token_sequence);

        self.active_blocks
    }

132
133
134
135
136
137
138
139
140
141
142
143
144
    /// Mark prefill as completed for a request, removing it from prefill_tokens tracking
    pub fn mark_prefill_completed(&mut self, request_id: &RequestId) {
        if let Some(tokens) = self.prefill_tokens.remove(request_id) {
            self.active_tokens = self
                .active_tokens
                .checked_sub(tokens.saturating_sub(1)) // Keep 1 token for decoding
                .expect("active_tokens underflow");
        }
    }

    pub fn new_tokens(&self, isl: usize, overlap: u32) -> usize {
        isl.checked_sub((overlap as usize) * self.block_size)
            .unwrap_or_else(|| panic!("prefill_tokens < 0 with overlap {overlap} and ISL {isl}"))
145
146
147
148
    }

    pub fn potential_blocks_and_tokens(
        &self,
149
150
        token_sequence: &[SequenceHash],
        isl: usize,
151
152
153
        overlap: u32,
    ) -> (usize, usize) {
        let potential_blocks = self.new_blocks(token_sequence) + self.active_blocks;
154
        let potential_tokens = self.new_tokens(isl, overlap) + self.active_tokens;
155
156
157
        (potential_blocks, potential_tokens)
    }

158
    /// Match a request against existing blocks and return the number of new blocks that would be added
159
160
    pub fn new_blocks(&self, token_sequence: &[SequenceHash]) -> usize {
        token_sequence
161
162
163
164
165
166
167
            .iter()
            .filter(|block| !self.unique_blocks.contains_key(block))
            .count()
    }

    /// Return the total number of blocks that would be used if the token sequence was added
    /// This is the sum of new blocks that would be added plus the current active blocks
168
    pub fn potential_blocks(&self, token_sequence: &[SequenceHash]) -> usize {
169
170
171
172
173
        self.new_blocks(token_sequence) + self.active_blocks
    }

    /// Free all blocks associated with a request
    pub fn free(&mut self, request_id: &RequestId) -> usize {
174
175
176
177
178
179
        // decoding has one active token
        self.active_tokens = self
            .active_tokens
            .checked_sub(self.prefill_tokens.remove(request_id).unwrap_or(1))
            .expect("active_tokens < 0");

180
181
182
183
184
        let Some(token_seq) = self.active_seqs.get(request_id) else {
            tracing::warn!("Trying to free free non-existent request {request_id}");
            return 0;
        };

185
186
        for block in token_seq.clone() {
            self.remove_block(request_id, &block)
187
188
189
190
191
192
193
194
195
196
197
        }

        self.active_seqs.remove(request_id).unwrap();

        self.active_blocks
    }
}

enum UpdateSequences {
    AddRequest {
        request_id: RequestId,
198
199
        token_sequence: Vec<SequenceHash>,
        isl: usize,
200
        overlap: u32,
201
202
203
204
    },
    Free {
        request_id: RequestId,
    },
205
    MarkPrefillCompleted {
206
207
208
        request_id: RequestId,
    },
    NewBlocks {
209
        token_sequence: Arc<Vec<SequenceHash>>,
210
211
212
        resp_tx: mpsc::SyncSender<usize>,
    },
    PotentialBlocks {
213
        token_sequence: Arc<Vec<SequenceHash>>,
214
215
        resp_tx: mpsc::SyncSender<usize>,
    },
216
    PotentialBlocksAndTokens {
217
218
        token_sequence: Arc<Vec<SequenceHash>>,
        isl: usize,
219
220
221
        overlap: u32,
        resp_tx: mpsc::SyncSender<(usize, usize)>,
    },
222
223
224
    ActiveBlocks {
        resp_tx: mpsc::SyncSender<usize>,
    },
225
226
227
    ActiveTokens {
        resp_tx: mpsc::SyncSender<usize>,
    },
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
    Shutdown,
}

/// Multi-worker extension of ActiveSequences that distributes requests across multiple threads
pub struct ActiveSequencesMultiWorker {
    senders: HashMap<WorkerId, mpsc::Sender<UpdateSequences>>,
    request_to_worker: HashMap<RequestId, WorkerId>,
    handles: HashMap<WorkerId, thread::JoinHandle<()>>,
    block_size: usize,
}

impl ActiveSequencesMultiWorker {
    pub fn new(block_size: usize, worker_ids: Vec<WorkerId>) -> Self {
        assert!(block_size > 1, "block_size must be greater than 1");

        let mut senders = HashMap::new();
        let mut handles = HashMap::new();

        for worker_id in worker_ids {
            let (sender, handle) = Self::start_worker(block_size);
            senders.insert(worker_id, sender);
            handles.insert(worker_id, handle);
        }

        Self {
            senders,
            request_to_worker: HashMap::new(),
            handles,
            block_size,
        }
    }

    /// Helper method to start a worker thread
    fn start_worker(block_size: usize) -> (mpsc::Sender<UpdateSequences>, thread::JoinHandle<()>) {
        let (request_tx, request_rx) = mpsc::channel::<UpdateSequences>();

        let handle = thread::spawn(move || {
            let mut active_sequences = ActiveSequences::new(block_size);

            while let Ok(command) = request_rx.recv() {
                match command {
                    UpdateSequences::AddRequest {
                        request_id,
                        token_sequence,
272
                        isl,
273
                        overlap,
274
                    } => {
275
                        active_sequences.add_request(request_id, token_sequence, isl, overlap);
276
277
278
279
                    }
                    UpdateSequences::Free { request_id } => {
                        active_sequences.free(&request_id);
                    }
280
281
                    UpdateSequences::MarkPrefillCompleted { request_id } => {
                        active_sequences.mark_prefill_completed(&request_id);
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
                    }
                    UpdateSequences::NewBlocks {
                        token_sequence,
                        resp_tx,
                    } => {
                        let new_blocks = active_sequences.new_blocks(&token_sequence);
                        let _ = resp_tx.send(new_blocks);
                    }
                    UpdateSequences::PotentialBlocks {
                        token_sequence,
                        resp_tx,
                    } => {
                        let potential_blocks = active_sequences.potential_blocks(&token_sequence);
                        let _ = resp_tx.send(potential_blocks);
                    }
297
298
                    UpdateSequences::PotentialBlocksAndTokens {
                        token_sequence,
299
                        isl,
300
301
302
                        overlap,
                        resp_tx,
                    } => {
303
304
305
306
307
                        let potential_tokens = active_sequences.potential_blocks_and_tokens(
                            &token_sequence,
                            isl,
                            overlap,
                        );
308
309
                        let _ = resp_tx.send(potential_tokens);
                    }
310
311
312
313
                    UpdateSequences::ActiveBlocks { resp_tx } => {
                        let active_blocks = active_sequences.active_blocks();
                        let _ = resp_tx.send(active_blocks);
                    }
314
315
316
317
                    UpdateSequences::ActiveTokens { resp_tx } => {
                        let active_tokens = active_sequences.active_tokens();
                        let _ = resp_tx.send(active_tokens);
                    }
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
                    UpdateSequences::Shutdown => {
                        break;
                    }
                }
            }
        });

        (request_tx, handle)
    }

    /// Update the set of workers, adding and removing as needed
    pub fn update_workers(&mut self, new_worker_ids: Vec<WorkerId>) -> HashMap<WorkerId, usize> {
        let current_workers: HashSet<WorkerId> = self.senders.keys().copied().collect();
        let new_workers: HashSet<WorkerId> = new_worker_ids.into_iter().collect();

        let workers_to_remove: Vec<WorkerId> =
            current_workers.difference(&new_workers).copied().collect();
        let workers_to_add: Vec<WorkerId> =
            new_workers.difference(&current_workers).copied().collect();

        // Remove workers
        for worker_id in &workers_to_remove {
            tracing::warn!("Removing worker {}", worker_id);

            // Send shutdown command to the worker
            if let Some(sender) = self.senders.remove(worker_id) {
                let _ = sender.send(UpdateSequences::Shutdown);
            }
            if let Some(handle) = self.handles.remove(worker_id) {
                let _ = handle.join();
            }
        }

        // Add new workers
        for worker_id in &workers_to_add {
            tracing::warn!("Adding worker {}", worker_id);

            let (sender, handle) = Self::start_worker(self.block_size);
            self.senders.insert(*worker_id, sender);
            self.handles.insert(*worker_id, handle);
        }

        // Return active blocks for all workers
        self.active_blocks()
    }

    pub fn add_request(
        &mut self,
        request_id: RequestId,
367
368
        token_sequence: Vec<SequenceHash>,
        isl: usize,
369
        overlap: u32,
370
371
372
373
374
375
376
377
378
379
380
381
        worker_id: WorkerId,
    ) {
        if !self.senders.contains_key(&worker_id) {
            panic!("Worker ID {worker_id} not found");
        }

        self.request_to_worker.insert(request_id.clone(), worker_id);

        self.senders[&worker_id]
            .send(UpdateSequences::AddRequest {
                request_id,
                token_sequence,
382
                isl,
383
                overlap,
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
            })
            .expect("Failed to send add_request command to worker");
    }

    pub fn free(&mut self, request_id: &RequestId) {
        let worker_id = self
            .request_to_worker
            .get(request_id)
            .copied()
            .expect("Request ID not found in request_to_worker mapping");

        self.senders[&worker_id]
            .send(UpdateSequences::Free {
                request_id: request_id.clone(),
            })
            .expect("Failed to send free command to worker");

        self.request_to_worker.remove(request_id);
    }

404
405
    /// Mark prefill as completed for a request
    pub fn mark_prefill_completed(&mut self, request_id: &RequestId) {
406
407
408
409
410
        let worker_id = self
            .request_to_worker
            .get(request_id)
            .copied()
            .expect("Request ID not found in request_to_worker mapping");
411

412
        self.senders[&worker_id]
413
            .send(UpdateSequences::MarkPrefillCompleted {
414
415
                request_id: request_id.clone(),
            })
416
            .expect("Failed to send mark_prefill_completed command to worker");
417
418
419
420
421
422
423
424
425
426
    }

    /// Get the number of workers
    pub fn num_workers(&self) -> usize {
        self.senders.len()
    }

    /// Generic method to query all workers with a given command
    fn query_workers(
        &self,
427
428
        token_sequence: Option<Vec<SequenceHash>>,
        command_fn: impl Fn(Option<Arc<Vec<SequenceHash>>>, mpsc::SyncSender<usize>) -> UpdateSequences,
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
    ) -> HashMap<WorkerId, usize> {
        let mut results = HashMap::new();
        let token_sequence_shared = token_sequence.map(Arc::new);
        let mut receivers = Vec::new();

        // Send queries to all workers in parallel
        for (worker_id, sender) in &self.senders {
            let (resp_tx, resp_rx) = mpsc::sync_channel(0);
            receivers.push((worker_id, resp_rx));
            sender
                .send(command_fn(token_sequence_shared.clone(), resp_tx))
                .expect("Failed to send command to worker");
        }

        // Collect results from all workers
        for (worker_id, receiver) in receivers {
            let result = receiver
                .recv_timeout(Duration::from_secs(1))
                .expect("Failed to receive response from worker");
            results.insert(*worker_id, result);
        }

        results
    }

    /// Query all workers for the number of new blocks that would be added by a token sequence
455
    pub fn new_blocks(&self, token_sequence: Vec<SequenceHash>) -> HashMap<WorkerId, usize> {
456
457
458
459
460
461
462
463
464
465
        self.query_workers(Some(token_sequence), |ts, resp_tx| match ts {
            Some(ts) => UpdateSequences::NewBlocks {
                token_sequence: ts,
                resp_tx,
            },
            None => unreachable!("token_sequence should always be Some for new_blocks"),
        })
    }

    /// Query all workers for the total number of blocks (new + active) that would be used by a token sequence
466
    pub fn potential_blocks(&self, token_sequence: Vec<SequenceHash>) -> HashMap<WorkerId, usize> {
467
468
469
470
471
472
473
474
475
        self.query_workers(Some(token_sequence), |ts, resp_tx| match ts {
            Some(ts) => UpdateSequences::PotentialBlocks {
                token_sequence: ts,
                resp_tx,
            },
            None => unreachable!("token_sequence should always be Some for potential_blocks"),
        })
    }

476
477
478
    /// Query all workers for the potential tokens (new + active) that would be used by a token sequence with overlap
    pub fn potential_blocks_and_tokens(
        &self,
479
480
        token_sequence: Vec<SequenceHash>,
        isl: usize,
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
        overlaps: OverlapScores,
    ) -> (HashMap<WorkerId, usize>, HashMap<WorkerId, usize>) {
        let mut potential_blocks = HashMap::new();
        let mut potential_tokens = HashMap::new();
        let token_sequence_shared = Arc::new(token_sequence);
        let mut receivers = Vec::new();

        // Send queries to all workers in parallel
        for (worker_id, sender) in &self.senders {
            let (resp_tx, resp_rx) = mpsc::sync_channel(0);
            receivers.push((worker_id, resp_rx));

            sender
                .send(UpdateSequences::PotentialBlocksAndTokens {
                    token_sequence: token_sequence_shared.clone(),
496
                    isl,
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
                    overlap: overlaps.scores.get(worker_id).copied().unwrap_or(0),
                    resp_tx,
                })
                .expect("Failed to send potential_tokens command to worker");
        }

        // Collect results from all workers
        for (worker_id, receiver) in receivers {
            let (blocks, tokens) = receiver
                .recv_timeout(Duration::from_secs(1))
                .expect("Failed to receive response from worker");
            potential_blocks.insert(*worker_id, blocks);
            potential_tokens.insert(*worker_id, tokens);
        }

        (potential_blocks, potential_tokens)
    }

515
516
517
518
    /// Query all workers for their current number of active blocks
    pub fn active_blocks(&self) -> HashMap<WorkerId, usize> {
        self.query_workers(None, |_, resp_tx| UpdateSequences::ActiveBlocks { resp_tx })
    }
519
520
521
522
523

    /// Query all workers for their current number of active tokens
    pub fn active_tokens(&self) -> HashMap<WorkerId, usize> {
        self.query_workers(None, |_, resp_tx| UpdateSequences::ActiveTokens { resp_tx })
    }
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
}

impl Drop for ActiveSequencesMultiWorker {
    fn drop(&mut self) {
        // Send shutdown command to all workers
        for sender in self.senders.values() {
            let _ = sender.send(UpdateSequences::Shutdown);
        }

        // Wait for all threads to finish
        for (_, handle) in self.handles.drain() {
            let _ = handle.join();
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
545
546
547
    fn test_multi_worker_block_sharing() {
        // Create multi-worker sequence manager with 3 workers
        let block_size = 4; // arbitrary block size
548
        let worker_ids = vec![0, 1, 2];
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
        let mut seq_manager = ActiveSequencesMultiWorker::new(block_size, worker_ids);

        // Add requests to each worker
        // Worker 0: sequence [0, 1, 2]
        seq_manager.add_request(
            "request_0".to_string(),
            vec![0, 1, 2],
            12, // ISL (3 blocks * 4 block_size)
            0,  // no overlap
            0,  // worker_id
        );

        // Worker 1: sequence [3, 4]
        seq_manager.add_request(
            "request_1".to_string(),
            vec![3, 4],
            8, // ISL (2 blocks * 4 block_size)
            0, // no overlap
            1, // worker_id
        );

        // Worker 2: sequence [0, 1, 2, 3]
        seq_manager.add_request(
            "request_2".to_string(),
            vec![0, 1, 2, 3],
            16, // ISL (4 blocks * 4 block_size)
            0,  // no overlap
            2,  // worker_id
        );

        // Verify active tokens after adding requests
        let tokens_after_add = seq_manager.active_tokens();
        assert_eq!(
            tokens_after_add[&0], 12,
            "Worker 0 should have 12 active tokens"
        );
        assert_eq!(
            tokens_after_add[&1], 8,
            "Worker 1 should have 8 active tokens"
        );
        assert_eq!(
            tokens_after_add[&2], 16,
            "Worker 2 should have 16 active tokens"
        );

        // Test potential blocks for sequence [0, 1]
        let potential_blocks = seq_manager.potential_blocks(vec![0, 1]);

        // Worker 0 should return 3 (already has blocks 0, 1, 2, so no new blocks needed for [0, 1])
        assert_eq!(
            potential_blocks[&0], 3,
            "Worker 0 should have 3 potential blocks"
        );

        // Worker 1 should return 4 (has blocks 3, 4, would need to add blocks 0, 1)
        assert_eq!(
            potential_blocks[&1], 4,
            "Worker 1 should have 4 potential blocks"
        );

        // Worker 2 should return 4 (already has blocks 0, 1, 2, 3, so no new blocks needed for [0, 1])
        assert_eq!(
            potential_blocks[&2], 4,
            "Worker 2 should have 4 potential blocks"
        );

        // Free all original requests
        seq_manager.free(&"request_0".to_string());
        seq_manager.free(&"request_1".to_string());
        seq_manager.free(&"request_2".to_string());

        // Verify active blocks are zero for all workers
        let active_blocks = seq_manager.active_blocks();
        assert_eq!(active_blocks[&0], 0, "Worker 0 should have 0 active blocks");
        assert_eq!(active_blocks[&1], 0, "Worker 1 should have 0 active blocks");
        assert_eq!(active_blocks[&2], 0, "Worker 2 should have 0 active blocks");

        // Verify active tokens are zero for all workers
        let final_tokens = seq_manager.active_tokens();
        assert_eq!(
            final_tokens[&0], 0,
            "Worker 0 should have 0 active tokens after freeing all"
        );
        assert_eq!(
            final_tokens[&1], 0,
            "Worker 1 should have 0 active tokens after freeing all"
        );
        assert_eq!(
            final_tokens[&2], 0,
            "Worker 2 should have 0 active tokens after freeing all"
        );
640
641
    }
}