cera 0.5.5

Rust-native LLM 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
// automatically generated by the FlatBuffers compiler, do not modify
// @generated
extern crate alloc;


#[allow(unused_imports, dead_code)]
pub mod cera {

#[allow(unused_imports, dead_code)]
pub mod cache {


pub enum LayerDataOffset {}
#[derive(Copy, Clone, PartialEq)]

pub struct LayerData<'a> {
  pub _tab: ::flatbuffers::Table<'a>,
}

impl<'a> ::flatbuffers::Follow<'a> for LayerData<'a> {
  type Inner = LayerData<'a>;
  #[inline]
  unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
    Self { _tab: unsafe { ::flatbuffers::Table::new(buf, loc) } }
  }
}

impl<'a> LayerData<'a> {
  pub const VT_TYPE_TAG: ::flatbuffers::VOffsetT = 4;
  pub const VT_K_DATA: ::flatbuffers::VOffsetT = 6;
  pub const VT_V_DATA: ::flatbuffers::VOffsetT = 8;

  #[inline]
  pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self {
    LayerData { _tab: table }
  }
  #[allow(unused_mut)]
  pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffers::Allocator + 'bldr>(
    _fbb: &'mut_bldr mut ::flatbuffers::FlatBufferBuilder<'bldr, A>,
    args: &'args LayerDataArgs<'args>
  ) -> ::flatbuffers::WIPOffset<LayerData<'bldr>> {
    let mut builder = LayerDataBuilder::new(_fbb);
    if let Some(x) = args.v_data { builder.add_v_data(x); }
    if let Some(x) = args.k_data { builder.add_k_data(x); }
    builder.add_type_tag(args.type_tag);
    builder.finish()
  }


  /// 0 = attention (k_data + v_data), 1 = conv (rolling buffer)
  #[inline]
  pub fn type_tag(&self) -> u8 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u8>(LayerData::VT_TYPE_TAG, Some(0)).unwrap()}
  }
  /// For attention: interleaved [k_data, v_data].
  /// For conv: raw f32 rolling buffer bytes.
  #[inline]
  pub fn k_data(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(LayerData::VT_K_DATA, None)}
  }
  #[inline]
  pub fn v_data(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(LayerData::VT_V_DATA, None)}
  }
}

impl ::flatbuffers::Verifiable for LayerData<'_> {
  #[inline]
  fn run_verifier(
    v: &mut ::flatbuffers::Verifier, pos: usize
  ) -> Result<(), ::flatbuffers::InvalidFlatbuffer> {
    v.visit_table(pos)?
     .visit_field::<u8>("type_tag", Self::VT_TYPE_TAG, false)?
     .visit_field::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'_, u8>>>("k_data", Self::VT_K_DATA, false)?
     .visit_field::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'_, u8>>>("v_data", Self::VT_V_DATA, false)?
     .finish();
    Ok(())
  }
}
pub struct LayerDataArgs<'a> {
    pub type_tag: u8,
    pub k_data: Option<::flatbuffers::WIPOffset<::flatbuffers::Vector<'a, u8>>>,
    pub v_data: Option<::flatbuffers::WIPOffset<::flatbuffers::Vector<'a, u8>>>,
}
impl<'a> Default for LayerDataArgs<'a> {
  #[inline]
  fn default() -> Self {
    LayerDataArgs {
      type_tag: 0,
      k_data: None,
      v_data: None,
    }
  }
}

pub struct LayerDataBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> {
  fbb_: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>,
  start_: ::flatbuffers::WIPOffset<::flatbuffers::TableUnfinishedWIPOffset>,
}
impl<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> LayerDataBuilder<'a, 'b, A> {
  #[inline]
  pub fn add_type_tag(&mut self, type_tag: u8) {
    self.fbb_.push_slot::<u8>(LayerData::VT_TYPE_TAG, type_tag, 0);
  }
  #[inline]
  pub fn add_k_data(&mut self, k_data: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
    self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(LayerData::VT_K_DATA, k_data);
  }
  #[inline]
  pub fn add_v_data(&mut self, v_data: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
    self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(LayerData::VT_V_DATA, v_data);
  }
  #[inline]
  pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> LayerDataBuilder<'a, 'b, A> {
    let start = _fbb.start_table();
    LayerDataBuilder {
      fbb_: _fbb,
      start_: start,
    }
  }
  #[inline]
  pub fn finish(self) -> ::flatbuffers::WIPOffset<LayerData<'a>> {
    let o = self.fbb_.end_table(self.start_);
    ::flatbuffers::WIPOffset::new(o.value())
  }
}

impl ::core::fmt::Debug for LayerData<'_> {
  fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
    let mut ds = f.debug_struct("LayerData");
      ds.field("type_tag", &self.type_tag());
      ds.field("k_data", &self.k_data());
      ds.field("v_data", &self.v_data());
      ds.finish()
  }
}
pub enum KvCacheEntryOffset {}
#[derive(Copy, Clone, PartialEq)]

pub struct KvCacheEntry<'a> {
  pub _tab: ::flatbuffers::Table<'a>,
}

impl<'a> ::flatbuffers::Follow<'a> for KvCacheEntry<'a> {
  type Inner = KvCacheEntry<'a>;
  #[inline]
  unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
    Self { _tab: unsafe { ::flatbuffers::Table::new(buf, loc) } }
  }
}

impl<'a> KvCacheEntry<'a> {
  pub const VT_MODEL_FINGERPRINT: ::flatbuffers::VOffsetT = 4;
  pub const VT_SEQ_LEN: ::flatbuffers::VOffsetT = 6;
  pub const VT_TOKENS: ::flatbuffers::VOffsetT = 8;
  pub const VT_LAYERS: ::flatbuffers::VOffsetT = 10;
  pub const VT_FORMAT_VERSION: ::flatbuffers::VOffsetT = 12;
  pub const VT_ANCHOR_DEPTH: ::flatbuffers::VOffsetT = 14;
  pub const VT_BOUNDARY_KIND: ::flatbuffers::VOffsetT = 16;
  pub const VT_SEMANTIC_HASH: ::flatbuffers::VOffsetT = 18;
  pub const VT_SHIFT_OFFSET: ::flatbuffers::VOffsetT = 20;

  #[inline]
  pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self {
    KvCacheEntry { _tab: table }
  }
  #[allow(unused_mut)]
  pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffers::Allocator + 'bldr>(
    _fbb: &'mut_bldr mut ::flatbuffers::FlatBufferBuilder<'bldr, A>,
    args: &'args KvCacheEntryArgs<'args>
  ) -> ::flatbuffers::WIPOffset<KvCacheEntry<'bldr>> {
    let mut builder = KvCacheEntryBuilder::new(_fbb);
    builder.add_semantic_hash(args.semantic_hash);
    builder.add_model_fingerprint(args.model_fingerprint);
    builder.add_shift_offset(args.shift_offset);
    builder.add_anchor_depth(args.anchor_depth);
    builder.add_format_version(args.format_version);
    if let Some(x) = args.layers { builder.add_layers(x); }
    if let Some(x) = args.tokens { builder.add_tokens(x); }
    builder.add_seq_len(args.seq_len);
    builder.add_boundary_kind(args.boundary_kind);
    builder.finish()
  }


  /// Hash of (architecture, n_layers, hidden_size, block_types, kv_heads).
  /// Prevents loading a cache from a different model.
  #[inline]
  pub fn model_fingerprint(&self) -> u64 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u64>(KvCacheEntry::VT_MODEL_FINGERPRINT, Some(0)).unwrap()}
  }
  /// Number of tokens prefilled.
  #[inline]
  pub fn seq_len(&self) -> u32 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u32>(KvCacheEntry::VT_SEQ_LEN, Some(0)).unwrap()}
  }
  /// The token sequence that was prefilled.
  #[inline]
  pub fn tokens(&self) -> Option<::flatbuffers::Vector<'a, u32>> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u32>>>(KvCacheEntry::VT_TOKENS, None)}
  }
  /// Per-layer snapshot data.
  #[inline]
  pub fn layers(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<LayerData<'a>>>> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<LayerData>>>>(KvCacheEntry::VT_LAYERS, None)}
  }
  /// Schema format version (v2 = 2).
  #[inline]
  pub fn format_version(&self) -> u32 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u32>(KvCacheEntry::VT_FORMAT_VERSION, Some(2)).unwrap()}
  }
  /// Depth or index of semantic anchor (0 for standard prefix).
  #[inline]
  pub fn anchor_depth(&self) -> u32 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u32>(KvCacheEntry::VT_ANCHOR_DEPTH, Some(0)).unwrap()}
  }
  /// Boundary kind tag (0 = unspecified, 1 = turn, 2 = tool_call, 3 = tool_output, 4 = thinking, 5 = image)
  #[inline]
  pub fn boundary_kind(&self) -> u8 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u8>(KvCacheEntry::VT_BOUNDARY_KIND, Some(0)).unwrap()}
  }
  /// Hash of semantic context.
  #[inline]
  pub fn semantic_hash(&self) -> u64 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u64>(KvCacheEntry::VT_SEMANTIC_HASH, Some(0)).unwrap()}
  }
  /// Context shift offset if RoPE context shift occurred (0 for non-shifted).
  #[inline]
  pub fn shift_offset(&self) -> u32 {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<u32>(KvCacheEntry::VT_SHIFT_OFFSET, Some(0)).unwrap()}
  }
}

impl ::flatbuffers::Verifiable for KvCacheEntry<'_> {
  #[inline]
  fn run_verifier(
    v: &mut ::flatbuffers::Verifier, pos: usize
  ) -> Result<(), ::flatbuffers::InvalidFlatbuffer> {
    v.visit_table(pos)?
     .visit_field::<u64>("model_fingerprint", Self::VT_MODEL_FINGERPRINT, false)?
     .visit_field::<u32>("seq_len", Self::VT_SEQ_LEN, false)?
     .visit_field::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'_, u32>>>("tokens", Self::VT_TOKENS, false)?
     .visit_field::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'_, ::flatbuffers::ForwardsUOffset<LayerData>>>>("layers", Self::VT_LAYERS, false)?
     .visit_field::<u32>("format_version", Self::VT_FORMAT_VERSION, false)?
     .visit_field::<u32>("anchor_depth", Self::VT_ANCHOR_DEPTH, false)?
     .visit_field::<u8>("boundary_kind", Self::VT_BOUNDARY_KIND, false)?
     .visit_field::<u64>("semantic_hash", Self::VT_SEMANTIC_HASH, false)?
     .visit_field::<u32>("shift_offset", Self::VT_SHIFT_OFFSET, false)?
     .finish();
    Ok(())
  }
}
pub struct KvCacheEntryArgs<'a> {
    pub model_fingerprint: u64,
    pub seq_len: u32,
    pub tokens: Option<::flatbuffers::WIPOffset<::flatbuffers::Vector<'a, u32>>>,
    pub layers: Option<::flatbuffers::WIPOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<LayerData<'a>>>>>,
    pub format_version: u32,
    pub anchor_depth: u32,
    pub boundary_kind: u8,
    pub semantic_hash: u64,
    pub shift_offset: u32,
}
impl<'a> Default for KvCacheEntryArgs<'a> {
  #[inline]
  fn default() -> Self {
    KvCacheEntryArgs {
      model_fingerprint: 0,
      seq_len: 0,
      tokens: None,
      layers: None,
      format_version: 2,
      anchor_depth: 0,
      boundary_kind: 0,
      semantic_hash: 0,
      shift_offset: 0,
    }
  }
}

pub struct KvCacheEntryBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> {
  fbb_: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>,
  start_: ::flatbuffers::WIPOffset<::flatbuffers::TableUnfinishedWIPOffset>,
}
impl<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> KvCacheEntryBuilder<'a, 'b, A> {
  #[inline]
  pub fn add_model_fingerprint(&mut self, model_fingerprint: u64) {
    self.fbb_.push_slot::<u64>(KvCacheEntry::VT_MODEL_FINGERPRINT, model_fingerprint, 0);
  }
  #[inline]
  pub fn add_seq_len(&mut self, seq_len: u32) {
    self.fbb_.push_slot::<u32>(KvCacheEntry::VT_SEQ_LEN, seq_len, 0);
  }
  #[inline]
  pub fn add_tokens(&mut self, tokens: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u32>>) {
    self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(KvCacheEntry::VT_TOKENS, tokens);
  }
  #[inline]
  pub fn add_layers(&mut self, layers: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<LayerData<'b >>>>) {
    self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(KvCacheEntry::VT_LAYERS, layers);
  }
  #[inline]
  pub fn add_format_version(&mut self, format_version: u32) {
    self.fbb_.push_slot::<u32>(KvCacheEntry::VT_FORMAT_VERSION, format_version, 2);
  }
  #[inline]
  pub fn add_anchor_depth(&mut self, anchor_depth: u32) {
    self.fbb_.push_slot::<u32>(KvCacheEntry::VT_ANCHOR_DEPTH, anchor_depth, 0);
  }
  #[inline]
  pub fn add_boundary_kind(&mut self, boundary_kind: u8) {
    self.fbb_.push_slot::<u8>(KvCacheEntry::VT_BOUNDARY_KIND, boundary_kind, 0);
  }
  #[inline]
  pub fn add_semantic_hash(&mut self, semantic_hash: u64) {
    self.fbb_.push_slot::<u64>(KvCacheEntry::VT_SEMANTIC_HASH, semantic_hash, 0);
  }
  #[inline]
  pub fn add_shift_offset(&mut self, shift_offset: u32) {
    self.fbb_.push_slot::<u32>(KvCacheEntry::VT_SHIFT_OFFSET, shift_offset, 0);
  }
  #[inline]
  pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> KvCacheEntryBuilder<'a, 'b, A> {
    let start = _fbb.start_table();
    KvCacheEntryBuilder {
      fbb_: _fbb,
      start_: start,
    }
  }
  #[inline]
  pub fn finish(self) -> ::flatbuffers::WIPOffset<KvCacheEntry<'a>> {
    let o = self.fbb_.end_table(self.start_);
    ::flatbuffers::WIPOffset::new(o.value())
  }
}

impl ::core::fmt::Debug for KvCacheEntry<'_> {
  fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
    let mut ds = f.debug_struct("KvCacheEntry");
      ds.field("model_fingerprint", &self.model_fingerprint());
      ds.field("seq_len", &self.seq_len());
      ds.field("tokens", &self.tokens());
      ds.field("layers", &self.layers());
      ds.field("format_version", &self.format_version());
      ds.field("anchor_depth", &self.anchor_depth());
      ds.field("boundary_kind", &self.boundary_kind());
      ds.field("semantic_hash", &self.semantic_hash());
      ds.field("shift_offset", &self.shift_offset());
      ds.finish()
  }
}
#[inline]
/// Verifies that a buffer of bytes contains a `KvCacheEntry`
/// and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_kv_cache_entry_unchecked`.
pub fn root_as_kv_cache_entry(buf: &[u8]) -> Result<KvCacheEntry<'_>, ::flatbuffers::InvalidFlatbuffer> {
  ::flatbuffers::root::<KvCacheEntry>(buf)
}
#[inline]
/// Verifies that a buffer of bytes contains a size prefixed
/// `KvCacheEntry` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `size_prefixed_root_as_kv_cache_entry_unchecked`.
pub fn size_prefixed_root_as_kv_cache_entry(buf: &[u8]) -> Result<KvCacheEntry<'_>, ::flatbuffers::InvalidFlatbuffer> {
  ::flatbuffers::size_prefixed_root::<KvCacheEntry>(buf)
}
#[inline]
/// Verifies, with the given options, that a buffer of bytes
/// contains a `KvCacheEntry` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_kv_cache_entry_unchecked`.
pub fn root_as_kv_cache_entry_with_opts<'b, 'o>(
  opts: &'o ::flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<KvCacheEntry<'b>, ::flatbuffers::InvalidFlatbuffer> {
  ::flatbuffers::root_with_opts::<KvCacheEntry<'b>>(opts, buf)
}
#[inline]
/// Verifies, with the given verifier options, that a buffer of
/// bytes contains a size prefixed `KvCacheEntry` and returns
/// it. Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_kv_cache_entry_unchecked`.
pub fn size_prefixed_root_as_kv_cache_entry_with_opts<'b, 'o>(
  opts: &'o ::flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<KvCacheEntry<'b>, ::flatbuffers::InvalidFlatbuffer> {
  ::flatbuffers::size_prefixed_root_with_opts::<KvCacheEntry<'b>>(opts, buf)
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a KvCacheEntry and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid `KvCacheEntry`.
pub unsafe fn root_as_kv_cache_entry_unchecked(buf: &[u8]) -> KvCacheEntry<'_> {
  unsafe { ::flatbuffers::root_unchecked::<KvCacheEntry>(buf) }
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a size prefixed KvCacheEntry and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid size prefixed `KvCacheEntry`.
pub unsafe fn size_prefixed_root_as_kv_cache_entry_unchecked(buf: &[u8]) -> KvCacheEntry<'_> {
  unsafe { ::flatbuffers::size_prefixed_root_unchecked::<KvCacheEntry>(buf) }
}
#[inline]
pub fn finish_kv_cache_entry_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>(
    fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>,
    root: ::flatbuffers::WIPOffset<KvCacheEntry<'a>>) {
  fbb.finish(root, None);
}

#[inline]
pub fn finish_size_prefixed_kv_cache_entry_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>(fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>, root: ::flatbuffers::WIPOffset<KvCacheEntry<'a>>) {
  fbb.finish_size_prefixed(root, None);
}
}  // pub mod cache
}  // pub mod cera