ferrox-server 0.13.2

OpenAI-compatible HTTP server for the Ferrox inference engine
Documentation
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
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
use super::*;

/// Continuous batching and paged KV COMPOSE: two concurrent jobs
/// over a shared paged store produce the same ids as two sequential
/// private-loop generates.
///
/// This is what the old exclusivity forbade. The batcher refused to
/// run alongside a KV pool or prefix cache because a batched row
/// could do neither pool acquisition nor prefix restore; a row that
/// holds a `PagedLease` gets both, so the refusal had nothing left
/// to protect. Token-for-token, not merely "it runs": the point is
/// that turning two independent switches on does not change what
/// the model says.
#[test]
fn continuous_batching_composes_with_paged_kv() {
    let decoder = tiny_decoder();
    let prompts: [Vec<usize>; 2] = [vec![1, 2, 3], vec![4, 5]];
    let params = [greedy_params(6, 7), greedy_params(4, 11)];
    let sequential: Vec<Vec<usize>> = prompts
        .iter()
        .zip(params.iter())
        .map(|(p, par)| sequential_ids(&decoder, p, par))
        .collect();

    let paged = PagedKvConfig {
        store: Arc::new(ferrox_core::cache::SharedPagedKv::new(
            decoder.layers.len(),
            /* block_size = */ 4,
            /* blocks_per_layer = */ 256,
            decoder.config.n_kv_heads,
            decoder.config.head_dim,
        )),
        queue_wait: std::time::Duration::ZERO,
        radix: None,
        anchor_token: None,
        slide_interval: crate::policy::pool_budget::DEFAULT_SWA_EVICTION_INTERVAL,
    };
    let store = Arc::clone(&paged.store);
    let free_before = store.free_groups();

    let batcher = ContinuousBatcher::spawn_with_config_paged(
        Arc::clone(&decoder),
        identity_decode(),
        BatcherConfig {
            prefill_chunk: 1,
            ..BatcherConfig::default()
        },
        Some(paged),
    );
    let barrier = Arc::new(Barrier::new(3));
    let results = Arc::new(Mutex::new(vec![None, None]));
    let mut threads = Vec::new();
    for i in 0..2 {
        let batcher = batcher.clone();
        let barrier = Arc::clone(&barrier);
        let results = Arc::clone(&results);
        let prompt = prompts[i].clone();
        let par = GenerationParams {
            max_tokens: params[i].max_tokens,
            sampling: SamplingParams {
                temperature: params[i].sampling.temperature,
                top_p: params[i].sampling.top_p,
                top_k: params[i].sampling.top_k,
                repetition_penalty: params[i].sampling.repetition_penalty,
                presence_penalty: params[i].sampling.presence_penalty,
                frequency_penalty: params[i].sampling.frequency_penalty,
            },
            seed: params[i].seed,
            stop: vec![],
            stop_token_ids: Vec::new(),
            json_object: params[i].json_object,
            cancel: params[i].cancel.clone(),
            ignore_eos: false,
        };
        threads.push(thread::spawn(move || {
            barrier.wait();
            let out = batcher
                .generate(prompt, par, StopTokens::default())
                .expect("a paged batched row must serve");
            results.lock().unwrap()[i] = Some(out.1);
        }));
    }
    barrier.wait();
    for t in threads {
        t.join().unwrap();
    }
    let got = results.lock().unwrap().clone();
    for (i, want) in sequential.iter().enumerate() {
        assert_eq!(
            got[i].as_ref().expect("both rows replied"),
            want,
            "row {i}: batching over paged KV changed the ids"
        );
    }

    // And every page came back once both rows ended.
    drop(batcher);
    std::thread::sleep(std::time::Duration::from_millis(200));
    assert_eq!(
        store.free_groups(),
        free_before,
        "a finished batched row must return its pages"
    );
}

/// A window model slides ON THE BATCHER, and the batcher's own
/// budget prices it at what it holds.
///
/// Both halves are needed and they fail differently. Without the
/// slide in the decode step the paged store runs out and a row is
/// refused; without the window in the budget the row never gets that
/// far, because the budget refuses it at submission for a context it
/// was never going to hold. Both ceilings are set between the two
/// answers here, so either alone breaks the test.
///
/// Token-for-token against the sequential private loop, because a
/// slide that dropped a page one step early would still produce
/// fluent output -- just not this output.
#[test]
fn a_window_model_slides_while_continuously_batched() {
    let window = 8;
    let block_size = 4;
    let mut cfg = test_dense_fixture();
    cfg.sliding_window = Some(window);
    cfg.swa_pattern = None;
    let vocab = cfg.vocab_size;
    let decoder = Arc::new(Decoder::new_random_small(cfg, 2, vocab));
    assert_eq!(decoder.config.uniform_sliding_window(), Some(window));

    let max_tokens = 400;
    let prompts: [Vec<usize>; 2] = [vec![1, 2, 3], vec![4, 5, 6]];
    let long = |seed: u64| GenerationParams {
        ignore_eos: true,
        ..greedy_params(max_tokens, seed)
    };
    let params = [long(7), long(11)];
    let sequential: Vec<Vec<usize>> = prompts
        .iter()
        .zip(params.iter())
        .map(|(p, par)| sequential_ids(&decoder, p, par))
        .collect();

    // 48 page groups per windowed row against 101 without the
    // window, and two rows to serve.
    let paged = PagedKvConfig {
        store: Arc::new(ferrox_core::cache::SharedPagedKv::new(
            decoder.layers.len(),
            block_size,
            /* blocks_per_layer = */ 120,
            decoder.config.n_kv_heads,
            decoder.config.head_dim,
        )),
        queue_wait: std::time::Duration::from_secs(5),
        radix: None,
        anchor_token: None,
        slide_interval: crate::policy::pool_budget::DEFAULT_SWA_EVICTION_INTERVAL,
    };
    let store = Arc::clone(&paged.store);
    let free_before = store.free_groups();

    let batcher = ContinuousBatcher::spawn_with_config_paged(
        Arc::clone(&decoder),
        identity_decode(),
        BatcherConfig {
            prefill_chunk: 8,
            kv_block_size: block_size,
            // 48 blocks per windowed row; 101 without the window,
            // which does not fit even once.
            kv_blocks: Some(100),
            ..BatcherConfig::default()
        },
        Some(paged),
    );

    let barrier = Arc::new(Barrier::new(3));
    let results = Arc::new(Mutex::new(vec![None, None]));
    let mut threads = Vec::new();
    for i in 0..2 {
        let batcher = batcher.clone();
        let barrier = Arc::clone(&barrier);
        let results = Arc::clone(&results);
        let prompt = prompts[i].clone();
        let par = params[i].clone();
        threads.push(thread::spawn(move || {
            barrier.wait();
            let out = batcher
                .generate(prompt, par, StopTokens::default())
                .expect("a windowed batched row must serve");
            results.lock().unwrap()[i] = Some(out.1);
        }));
    }
    barrier.wait();
    for t in threads {
        t.join().unwrap();
    }
    let got = results.lock().unwrap().clone();
    for (i, want) in sequential.iter().enumerate() {
        let ids = got[i].as_ref().expect("both rows replied");
        assert_eq!(ids.len(), max_tokens, "row {i} stopped early");
        assert_eq!(ids, want, "row {i}: the window slide changed the ids");
    }

    drop(batcher);
    std::thread::sleep(std::time::Duration::from_millis(200));
    assert_eq!(
        store.free_groups(),
        free_before,
        "a finished slid row must return its recycled pages too"
    );
}

/// Two concurrent jobs through the batcher must match two sequential
/// private-loop generates token-for-token.
#[test]
fn continuous_batch_matches_sequential_generate_token_ids() {
    let decoder = tiny_decoder();
    let prompts: [Vec<usize>; 2] = [vec![1, 2, 3], vec![4, 5]];
    let params = [greedy_params(8, 7), greedy_params(5, 11)];
    let sequential: Vec<Vec<usize>> = prompts
        .iter()
        .zip(params.iter())
        .map(|(p, par)| sequential_ids(&decoder, p, par))
        .collect();

    let batcher = ContinuousBatcher::spawn_with_config(
        Arc::clone(&decoder),
        identity_decode(),
        // Chunk 1: every prompt token is its own scheduling unit, the
        // most aggressive split, and the sampled ids must not move.
        BatcherConfig {
            prefill_chunk: 1,
            ..BatcherConfig::default()
        },
    );
    let barrier = Arc::new(Barrier::new(3));
    let results = Arc::new(Mutex::new(vec![None, None]));
    let mut threads = Vec::new();
    for i in 0..2 {
        let batcher = batcher.clone();
        let barrier = Arc::clone(&barrier);
        let results = Arc::clone(&results);
        let prompt = prompts[i].clone();
        let par = GenerationParams {
            max_tokens: params[i].max_tokens,
            sampling: SamplingParams {
                temperature: params[i].sampling.temperature,
                top_p: params[i].sampling.top_p,
                top_k: params[i].sampling.top_k,
                repetition_penalty: params[i].sampling.repetition_penalty,
                presence_penalty: params[i].sampling.presence_penalty,
                frequency_penalty: params[i].sampling.frequency_penalty,
            },
            seed: params[i].seed,
            stop: vec![],
            stop_token_ids: Vec::new(),
            json_object: params[i].json_object,
            cancel: params[i].cancel.clone(),
            ignore_eos: false,
        };
        threads.push(thread::spawn(move || {
            barrier.wait();
            let out = batcher
                .generate(prompt, par, StopTokens::default())
                .expect("batch generate");
            results.lock().unwrap()[i] = Some(out.1);
        }));
    }
    barrier.wait();
    for t in threads {
        t.join().unwrap();
    }
    let got = results.lock().unwrap();
    assert_eq!(got[0].as_ref().unwrap(), &sequential[0]);
    assert_eq!(got[1].as_ref().unwrap(), &sequential[1]);
}

#[test]
fn continuous_batch_honors_stop_sequence_in_decoded_text() {
    let decoder = tiny_decoder();
    // Map every token id to a fixed letter so a stop string is easy
    // to force once we know the first few sequential ids.
    let decode: DecodeFn = Arc::new(|ids: &[usize]| {
        ids.iter()
            .map(|id| match id % 3 {
                0 => 'X',
                1 => 'Y',
                _ => 'Z',
            })
            .collect()
    });
    let prompt = vec![1usize, 2, 3];
    let mut params = greedy_params(32, 3);
    // First generate without stop to learn the decoded stream.
    let ids = sequential_ids(&decoder, &prompt, &params);
    let full: String = ids
        .iter()
        .map(|id| match id % 3 {
            0 => 'X',
            1 => 'Y',
            _ => 'Z',
        })
        .collect();
    // Pick a two-char substring that appears mid-stream when long enough.
    assert!(
        full.len() >= 4,
        "need enough tokens to place a mid-stream stop"
    );
    let stop = full[2..4].to_string();
    params.stop = vec![stop.clone()];

    let batcher = ContinuousBatcher::spawn_with_config(
        Arc::clone(&decoder),
        decode,
        BatcherConfig {
            prefill_chunk: 2,
            ..BatcherConfig::default()
        },
    );
    let (finish, _ids, text, _usage) = batcher
        .generate(prompt, params, StopTokens::default())
        .expect("batch generate");
    assert_eq!(
        finish,
        FinishReason::StopSequence(stop.clone()),
        "a batched row must name the stop it hit, like an unbatched one"
    );
    assert!(
        !text.contains(&stop),
        "stop string must be trimmed from visible text: text={text:?} stop={stop:?}"
    );
    assert_eq!(&full[..full.find(&stop).unwrap()], text);
}
/// The continuous batcher carried the same single `eos_id` every
/// other server decode loop did, so a Llama-3 or gemma checkpoint
/// served through it ran past its own turn ender to `max_tokens`.
/// Here the stop set holds the third token this prompt would
/// otherwise generate and nothing else: a loop honouring the set
/// stops with exactly two tokens, one comparing against a lone
/// metadata EOS runs all 32.
#[test]
fn continuous_batch_stops_on_any_member_of_the_stop_set() {
    let decoder = tiny_decoder();
    let decode: DecodeFn = Arc::new(|_: &[usize]| String::new());
    let prompt = vec![1usize, 2, 3];
    let params = greedy_params(32, 3);
    let ids = sequential_ids(&decoder, &prompt, &params);
    assert!(ids.len() > 3, "need a mid-stream token to stop on");
    let turn_ender = ids[2];

    let batcher = ContinuousBatcher::spawn_with_config(
        Arc::clone(&decoder),
        decode,
        BatcherConfig {
            prefill_chunk: 2,
            ..BatcherConfig::default()
        },
    );
    let (finish, got, _text, usage) = batcher
        .generate(prompt, params, StopTokens::from_eos(Some(turn_ender)))
        .expect("batch generate");
    assert_eq!(finish, FinishReason::Stop);
    assert_eq!(got, ids[..2].to_vec());
    assert_eq!(usage.completion_tokens, 2);
}

/// The state machine itself: each `step_chunk` is bounded by the
/// chunk size, is resumable, and reports done exactly once the
/// prompt is exhausted. This is the property the whole scheduler
/// rests on -- an unbounded prefill has no safe interleaving point.
#[test]
fn prefill_step_chunk_is_bounded_and_resumable() {
    let decoder = tiny_decoder();
    let prompt: Vec<usize> = (1..=7).collect();
    let mut state = PrefillState::new(Arc::clone(&decoder), &prompt, 3);
    assert_eq!(state.tokens_remaining(), 7);
    assert_eq!(state.tokens_processed(), 0);

    assert!(!state.step_chunk());
    assert_eq!(state.tokens_processed(), 3, "a chunk may not overrun");
    assert_eq!(state.tokens_remaining(), 4);

    assert!(!state.step_chunk());
    assert_eq!(state.tokens_processed(), 6);

    assert!(state.step_chunk(), "final short chunk finishes the prompt");
    assert_eq!(state.tokens_processed(), 7);
    assert_eq!(state.tokens_remaining(), 0);
    assert!(state.is_done());
    assert!(state.step_chunk(), "stepping a finished prefill is a no-op");
    assert_eq!(state.tokens_processed(), 7);
}

/// An empty prompt still needs one forward pass to have logits to
/// sample from -- the case the pre-chunking `admit` special-cased.
#[test]
fn empty_prompt_prefills_one_stand_in_token() {
    let decoder = tiny_decoder();
    let mut state = PrefillState::new(Arc::clone(&decoder), &[], 4);
    assert_eq!(state.tokens_remaining(), 1);
    assert!(state.step_chunk());
    let (_caches, logits, pos, _ids) = state.into_decode_start();
    assert_eq!(pos, 1);
    assert_eq!(logits.len(), decoder.config.vocab_size);
}

/// Chunking is a scheduling boundary, not a numerical one: whatever
/// the chunk size, the prompt runs through the same `forward_token`
/// sequence at the same positions, so the logits are bit-identical
/// to the sequential prefill this replaced. If this ever fails,
/// every sampled token downstream is suspect.
#[test]
fn prefill_chunking_does_not_change_logits() {
    let decoder = tiny_decoder();
    let prompt: Vec<usize> = (0..11).map(|i| (i * 3 + 1) % 16).collect();

    let mut sequential: Vec<f32> = Vec::new();
    let mut caches: Vec<KvCache> = decoder
        .layers
        .iter()
        .map(|_| KvCache::new(decoder.config.n_kv_heads, decoder.config.head_dim))
        .collect();
    for (pos, &tok) in prompt.iter().enumerate() {
        sequential = decoder.forward_token(tok, pos, &mut caches);
    }

    for chunk in [1usize, 2, 5, 11, 64] {
        let mut state = PrefillState::new(Arc::clone(&decoder), &prompt, chunk);
        while !state.step_chunk() {}
        let (_caches, logits, pos, _ids) = state.into_decode_start();
        assert_eq!(pos, prompt.len());
        assert_eq!(
            logits, sequential,
            "chunk size {chunk} changed the prefill logits"
        );
    }
}

/// The scheduling property chunking exists for, in two claims that
/// both fail under an unbounded prefill:
///
/// 1. A long prompt is *observable in partial states* -- it is a
///    sequence of bounded units, not one uninterruptible call. The
///    pre-chunking scheduler ran the whole prompt inside `admit`,
///    where `prefill_tokens` could only ever jump 0 -> len.
/// 2. Decode keeps stepping while those partial states go by. A
///    prompt joining the batch costs an in-flight decode one chunk,
///    not the whole prompt.
#[test]
fn long_prefill_does_not_freeze_an_in_flight_decode() {
    let decoder = tiny_decoder();
    let batcher = ContinuousBatcher::spawn_with_config(
        Arc::clone(&decoder),
        identity_decode(),
        BatcherConfig {
            prefill_chunk: 1,
            ..BatcherConfig::default()
        },
    );

    // A long-running decode: enough tokens that it is still
    // generating while the second job's prompt is chunked through.
    let decode_job = {
        let batcher = batcher.clone();
        thread::spawn(move || {
            batcher.generate(vec![1, 2], greedy_params(90, 5), StopTokens::default())
        })
    };
    let deadline = std::time::Instant::now() + std::time::Duration::from_secs(60);
    while batcher.stats().decode_steps < 2 {
        assert!(std::time::Instant::now() < deadline, "decode never started");
        thread::yield_now();
    }

    let long_prompt: Vec<usize> = (0..40).map(|i| (i % 16) + 1).collect();
    let total = long_prompt.len() as u64;
    let prefill_at_submit = batcher.stats().prefill_tokens;
    let prefill_job = {
        let batcher = batcher.clone();
        thread::spawn(move || {
            batcher.generate(long_prompt, greedy_params(1, 9), StopTokens::default())
        })
    };

    // Claim 1: catch the long prompt mid-prefill. An unbounded
    // prefill is never observable here -- it goes straight to done.
    let decode_before = loop {
        assert!(
            std::time::Instant::now() < deadline,
            "never observed the long prompt mid-prefill"
        );
        let st = batcher.stats();
        let progressed = st.prefill_tokens - prefill_at_submit;
        assert!(
            progressed < total,
            "the whole prompt was prefilled without ever being observed \
                 partially done: prefill ran as one unbounded unit of work"
        );
        if progressed > 0 {
            break st.decode_steps;
        }
        thread::yield_now();
    };

    // Claim 2: decode advances before that prefill finishes.
    loop {
        assert!(
            std::time::Instant::now() < deadline,
            "decode stalled while a long prompt prefilled"
        );
        let st = batcher.stats();
        if st.decode_steps > decode_before {
            break;
        }
        assert!(
            st.prefill_tokens - prefill_at_submit < total,
            "the prompt finished prefilling before the in-flight decode \
                 took a single step: prefill froze decode"
        );
        thread::yield_now();
    }

    let (_finish, ids, _text, _usage) = prefill_job.join().unwrap().expect("prefill job");
    assert_eq!(ids.len(), 1);
    let (_finish, ids, _text, _usage) = decode_job.join().unwrap().expect("decode job");
    assert_eq!(ids.len(), 90);
}

/// The in-flight cap counts prompts that are still prefilling, not
/// just rows already decoding -- a prefilling prompt holds a full
/// set of KV caches. Two jobs under `max_seqs: 1` must both still
/// complete correctly (the second waits in the channel).
#[test]
fn max_seqs_cap_counts_prefilling_prompts_and_still_serves_both() {
    let decoder = tiny_decoder();
    let batcher = ContinuousBatcher::spawn_with_config(
        Arc::clone(&decoder),
        identity_decode(),
        BatcherConfig {
            max_seqs: 1,
            prefill_chunk: 1,
            ..BatcherConfig::default()
        },
    );
    let expected: Vec<Vec<usize>> = [(vec![1usize, 2, 3], 6u64), (vec![4usize, 5], 6)]
        .iter()
        .map(|(p, seed)| sequential_ids(&decoder, p, &greedy_params(6, *seed)))
        .collect();

    let handles: Vec<_> = [(vec![1usize, 2, 3], 6u64), (vec![4usize, 5], 6)]
        .into_iter()
        .map(|(prompt, seed)| {
            let batcher = batcher.clone();
            thread::spawn(move || {
                batcher
                    .generate(prompt, greedy_params(6, seed), StopTokens::default())
                    .expect("generate")
                    .1
            })
        })
        .collect();
    let got: Vec<Vec<usize>> = handles.into_iter().map(|h| h.join().unwrap()).collect();
    assert_eq!(got[0], expected[0]);
    assert_eq!(got[1], expected[1]);
}

/// A finished batched row must PUBLISH its prefix, not just adopt one.
///
/// The batched path adopted from the radix tree and never contributed
/// to it, because the prompt ids were dropped at the prefill-to-decode
/// handover and publishing needs the whole sequence. So under
/// `FERROX_CONTINUOUS_BATCHING=1` prefix sharing ran against a tree
/// nothing filled: the first request paid full prefill and so did every
/// request after it, forever.
///
/// Asserts the TREE grew, which is the thing that was missing. A test
/// that only checked the second request was fast would pass on a warm
/// page cache.
#[test]
fn a_finished_batched_row_publishes_its_prefix() {
    let decoder = tiny_decoder();
    let block_size = 4;
    let radix = Arc::new(std::sync::Mutex::new(
        crate::policy::radix::RadixCache::new(block_size),
    ));
    let paged = PagedKvConfig {
        store: Arc::new(ferrox_core::cache::SharedPagedKv::new(
            decoder.layers.len(),
            block_size,
            /* blocks_per_layer = */ 256,
            decoder.config.n_kv_heads,
            decoder.config.head_dim,
        )),
        queue_wait: std::time::Duration::ZERO,
        radix: Some(Arc::clone(&radix)),
        anchor_token: None,
        slide_interval: crate::policy::pool_budget::DEFAULT_SWA_EVICTION_INTERVAL,
    };
    assert_eq!(
        radix.lock().unwrap().total_size(),
        0,
        "the tree starts empty"
    );

    let batcher = ContinuousBatcher::spawn_with_config_paged(
        Arc::clone(&decoder),
        identity_decode(),
        BatcherConfig {
            prefill_chunk: 1,
            ..BatcherConfig::default()
        },
        Some(paged),
    );
    let prompt: Vec<usize> = vec![1, 2, 3, 4, 5, 6, 7, 8];
    batcher
        .generate(prompt, greedy_params(4, 7), StopTokens::default())
        .expect("a paged batched row must serve");
    drop(batcher);
    std::thread::sleep(std::time::Duration::from_millis(200));

    assert!(
        radix.lock().unwrap().total_size() > 0,
        "a finished paged row must leave its prefix in the tree for the next request"
    );
}