eredu-core 0.1.0

Backend-neutral contracts and orchestration for eredu
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
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
//! Portable reusable prompt-cache identity, catalog, and validation.

use std::{
    collections::{BTreeMap, BTreeSet},
    ops::Range,
};

use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256};

use crate::attention::{AttentionPolicy, LayerSchedule};

use super::{
    CachePolicyError, CacheRankIdentity, CacheRepresentation, LayerCachePolicy, StateTensorOwner,
    StateTensorRole,
};

/// Current reusable prompt-cache schema version.
pub const PROMPT_CACHE_SCHEMA_VERSION: u32 = 8;

/// One named contiguous state range in a portable prompt-cache identity.
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct PromptCacheStateSegment {
    id: String,
    layers: Range<usize>,
}

impl PromptCacheStateSegment {
    /// Creates a named non-empty local state range.
    pub fn new(id: impl Into<String>, layers: Range<usize>) -> Result<Self, PromptCacheError> {
        let id = id.into();
        if id.trim().is_empty() {
            return Err(PromptCacheError::Malformed(
                "prompt-cache state segment identity must not be empty".into(),
            ));
        }
        if layers.is_empty() {
            return Err(PromptCacheError::Malformed(format!(
                "prompt-cache state segment {id:?} has an empty range"
            )));
        }
        Ok(Self { id, layers })
    }

    /// Returns the architecture-declared stable segment identity.
    pub fn id(&self) -> &str {
        &self.id
    }

    /// Returns the segment's local range in the identity's ordered layout.
    pub fn layers(&self) -> Range<usize> {
        self.layers.clone()
    }
}

/// Caller-supplied identity and geometry for a reusable prefix cache.
#[derive(Debug, Clone, Eq, Hash, PartialEq)]
pub struct PromptCacheDescriptor {
    /// Stable architecture family.
    model_family: String,
    /// Effective normalized model type.
    effective_model_type: String,
    /// Caller-verified checkpoint identity.
    checkpoint_fingerprint: String,
    /// Identity of all content that produced the cached activations.
    prefix_content_fingerprint: String,
    /// Cache-relevant architecture identity.
    architecture_fingerprint: String,
    /// Total model layer count.
    layer_count: usize,
    /// Inclusive first global layer stored by this rank.
    global_layer_start: usize,
    /// Exclusive global layer boundary stored by this rank.
    global_layer_end: usize,
    /// Prefix batch size.
    batch_size: usize,
    /// Ordered cache layout for the owned layer range.
    layer_layout: LayerSchedule<LayerCachePolicy>,
    /// Per-layer processed-token delta relative to the persisted prefix.
    layer_prefix_offsets: Vec<i32>,
    /// Architecture-declared named ranges in the ordered state layout.
    state_segments: Vec<PromptCacheStateSegment>,
    /// Attention sink or pinned-prefix token count.
    sink_tokens: usize,
    /// Distributed rank-local layout.
    topology: PromptCacheTopology,
}

impl PromptCacheDescriptor {
    /// Creates and validates a complete reusable prefix-cache descriptor.
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        model_family: impl Into<String>,
        effective_model_type: impl Into<String>,
        checkpoint_fingerprint: impl Into<String>,
        prefix_content_fingerprint: impl Into<String>,
        architecture_fingerprint: impl Into<String>,
        layer_count: usize,
        global_layer_start: usize,
        global_layer_end: usize,
        batch_size: usize,
        layer_layout: LayerSchedule<LayerCachePolicy>,
        layer_prefix_offsets: Vec<i32>,
        state_segments: Vec<PromptCacheStateSegment>,
        sink_tokens: usize,
        topology: PromptCacheTopology,
    ) -> Result<Self, PromptCacheError> {
        let descriptor = Self {
            model_family: model_family.into(),
            effective_model_type: effective_model_type.into(),
            checkpoint_fingerprint: checkpoint_fingerprint.into(),
            prefix_content_fingerprint: prefix_content_fingerprint.into(),
            architecture_fingerprint: architecture_fingerprint.into(),
            layer_count,
            global_layer_start,
            global_layer_end,
            batch_size,
            layer_layout,
            layer_prefix_offsets,
            state_segments,
            sink_tokens,
            topology,
        };
        for value in [
            &descriptor.model_family,
            &descriptor.effective_model_type,
            &descriptor.checkpoint_fingerprint,
            &descriptor.prefix_content_fingerprint,
            &descriptor.architecture_fingerprint,
        ] {
            if value.trim().is_empty() {
                return Err(PromptCacheError::Malformed(
                    "prompt-cache identity strings must be non-empty".into(),
                ));
            }
        }
        descriptor.validate()?;
        Ok(descriptor)
    }

    /// Stable architecture family.
    pub fn model_family(&self) -> &str {
        &self.model_family
    }
    /// Effective normalized model type.
    pub fn effective_model_type(&self) -> &str {
        &self.effective_model_type
    }
    /// Caller-verified checkpoint identity.
    pub fn checkpoint_fingerprint(&self) -> &str {
        &self.checkpoint_fingerprint
    }
    /// Prefix-content identity.
    pub fn prefix_content_fingerprint(&self) -> &str {
        &self.prefix_content_fingerprint
    }
    /// Cache-relevant architecture identity.
    pub fn architecture_fingerprint(&self) -> &str {
        &self.architecture_fingerprint
    }
    /// Total model layer count.
    pub const fn layer_count(&self) -> usize {
        self.layer_count
    }
    /// Inclusive first global layer stored by this rank.
    pub const fn global_layer_start(&self) -> usize {
        self.global_layer_start
    }
    /// Exclusive global layer boundary stored by this rank.
    pub const fn global_layer_end(&self) -> usize {
        self.global_layer_end
    }
    /// Prefix batch size.
    pub const fn batch_size(&self) -> usize {
        self.batch_size
    }
    /// Ordered cache layout.
    pub const fn layer_layout(&self) -> &LayerSchedule<LayerCachePolicy> {
        &self.layer_layout
    }
    /// Per-layer processed-token deltas.
    pub fn layer_prefix_offsets(&self) -> &[i32] {
        &self.layer_prefix_offsets
    }
    /// Named state-layout ranges.
    pub fn state_segments(&self) -> &[PromptCacheStateSegment] {
        &self.state_segments
    }
    /// Attention sink token count.
    pub const fn sink_tokens(&self) -> usize {
        self.sink_tokens
    }
    /// Distributed rank-local layout.
    pub const fn topology(&self) -> &PromptCacheTopology {
        &self.topology
    }
    /// Replaces the distributed topology and revalidates the descriptor.
    pub fn with_topology(
        mut self,
        topology: PromptCacheTopology,
    ) -> Result<Self, PromptCacheError> {
        self.topology = topology;
        self.validate()?;
        Ok(self)
    }
    /// Replaces the cache-relevant architecture fingerprint.
    pub fn with_architecture_fingerprint(
        mut self,
        architecture_fingerprint: impl Into<String>,
    ) -> Result<Self, PromptCacheError> {
        self.architecture_fingerprint = architecture_fingerprint.into();
        if self.architecture_fingerprint.trim().is_empty() {
            return Err(PromptCacheError::Malformed(
                "prompt-cache architecture fingerprint must be non-empty".into(),
            ));
        }
        self.validate()?;
        Ok(self)
    }
    /// Replaces the total model layer count while preserving the owned range.
    pub fn with_layer_count(mut self, layer_count: usize) -> Result<Self, PromptCacheError> {
        self.layer_count = layer_count;
        self.validate()?;
        Ok(self)
    }
    /// Derives every model-owned field from a prepared model identity.
    ///
    /// The checkpoint and prefix-content fingerprints remain caller-owned
    /// because they identify the concrete weights and processed input rather
    /// than model structure.
    pub fn from_model_identity(
        model: PromptCacheModelIdentity,
        checkpoint_fingerprint: impl Into<String>,
        prefix_content_fingerprint: impl Into<String>,
        batch_size: usize,
    ) -> Result<Self, PromptCacheError> {
        let descriptor = Self {
            model_family: model.model_family,
            effective_model_type: model.effective_model_type,
            checkpoint_fingerprint: checkpoint_fingerprint.into(),
            prefix_content_fingerprint: prefix_content_fingerprint.into(),
            architecture_fingerprint: model.architecture_fingerprint,
            layer_count: model.layer_count,
            global_layer_start: model.global_layer_start,
            global_layer_end: model.global_layer_end,
            batch_size,
            layer_layout: model.layer_layout,
            layer_prefix_offsets: model.layer_prefix_offsets,
            state_segments: model.state_segments,
            sink_tokens: model.sink_tokens,
            topology: model.topology,
        };
        descriptor.validate()?;
        Ok(descriptor)
    }

    /// Validates the complete portable identity and cache geometry.
    pub fn validate(&self) -> Result<(), PromptCacheError> {
        IdentityLayout {
            layer_count: self.layer_count,
            global_layer_start: self.global_layer_start,
            global_layer_end: self.global_layer_end,
            batch_size: self.batch_size,
            layer_layout: &self.layer_layout,
            layer_prefix_offsets: &self.layer_prefix_offsets,
            state_segments: &self.state_segments,
            topology: &self.topology,
        }
        .validate("prompt-cache descriptor")
    }
}

/// Cache-relevant structure derived from a prepared model.
#[derive(Debug, Clone, Eq, Hash, PartialEq)]
pub struct PromptCacheModelIdentity {
    /// Stable architecture family.
    model_family: String,
    /// Effective normalized model type.
    effective_model_type: String,
    /// Cache-relevant architecture identity.
    architecture_fingerprint: String,
    /// Total model layer count.
    layer_count: usize,
    /// Inclusive first global layer owned by this model instance.
    global_layer_start: usize,
    /// Exclusive global layer boundary owned by this model instance.
    global_layer_end: usize,
    /// Attention sink or pinned-prefix token count.
    sink_tokens: usize,
    /// Distributed rank-local layout.
    topology: PromptCacheTopology,
    /// Ordered cache layout for the owned layer range.
    layer_layout: LayerSchedule<LayerCachePolicy>,
    /// Per-layer processed-token delta relative to the persisted prefix.
    layer_prefix_offsets: Vec<i32>,
    /// Architecture-declared named ranges in the ordered state layout.
    state_segments: Vec<PromptCacheStateSegment>,
}

impl PromptCacheModelIdentity {
    /// Creates and validates cache-relevant prepared-model identity.
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        model_family: impl Into<String>,
        effective_model_type: impl Into<String>,
        architecture_fingerprint: impl Into<String>,
        layer_count: usize,
        global_layer_start: usize,
        global_layer_end: usize,
        sink_tokens: usize,
        topology: PromptCacheTopology,
        layer_layout: LayerSchedule<LayerCachePolicy>,
        layer_prefix_offsets: Vec<i32>,
        state_segments: Vec<PromptCacheStateSegment>,
    ) -> Result<Self, PromptCacheError> {
        let identity = Self {
            model_family: model_family.into(),
            effective_model_type: effective_model_type.into(),
            architecture_fingerprint: architecture_fingerprint.into(),
            layer_count,
            global_layer_start,
            global_layer_end,
            sink_tokens,
            topology,
            layer_layout,
            layer_prefix_offsets,
            state_segments,
        };
        for value in [
            &identity.model_family,
            &identity.effective_model_type,
            &identity.architecture_fingerprint,
        ] {
            if value.trim().is_empty() {
                return Err(PromptCacheError::Malformed(
                    "prompt-cache model identity strings must be non-empty".into(),
                ));
            }
        }
        identity.validate()?;
        Ok(identity)
    }

    /// Stable architecture family.
    pub fn model_family(&self) -> &str {
        &self.model_family
    }
    /// Effective normalized model type.
    pub fn effective_model_type(&self) -> &str {
        &self.effective_model_type
    }
    /// Cache-relevant architecture identity.
    pub fn architecture_fingerprint(&self) -> &str {
        &self.architecture_fingerprint
    }
    /// Total model layer count.
    pub const fn layer_count(&self) -> usize {
        self.layer_count
    }
    /// Inclusive first global layer owned locally.
    pub const fn global_layer_start(&self) -> usize {
        self.global_layer_start
    }
    /// Exclusive global layer boundary owned locally.
    pub const fn global_layer_end(&self) -> usize {
        self.global_layer_end
    }
    /// Attention sink token count.
    pub const fn sink_tokens(&self) -> usize {
        self.sink_tokens
    }
    /// Distributed rank-local layout.
    pub const fn topology(&self) -> &PromptCacheTopology {
        &self.topology
    }
    /// Ordered cache layout.
    pub const fn layer_layout(&self) -> &LayerSchedule<LayerCachePolicy> {
        &self.layer_layout
    }
    /// Per-layer processed-token deltas.
    pub fn layer_prefix_offsets(&self) -> &[i32] {
        &self.layer_prefix_offsets
    }
    /// Named state-layout ranges.
    pub fn state_segments(&self) -> &[PromptCacheStateSegment] {
        &self.state_segments
    }
    /// Builds an ordered ordinary key/value layout from runtime window values.
    pub fn key_value_layouts(
        sliding_windows: impl IntoIterator<Item = Option<i32>>,
        num_key_value_heads: i32,
        head_dim: i32,
    ) -> Result<LayerSchedule<LayerCachePolicy>, PromptCacheError> {
        let policies = sliding_windows
            .into_iter()
            .map(|window| {
                let attention = AttentionPolicy::from_sliding_window(window)
                    .map_err(|error| PromptCacheError::Malformed(error.to_string()))?;
                LayerCachePolicy::key_value(attention, num_key_value_heads, head_dim)
                    .map_err(PromptCacheError::from)
            })
            .collect::<Result<Vec<_>, _>>()?;
        LayerSchedule::new(policies.len(), policies)
            .map_err(|error| PromptCacheError::Malformed(error.to_string()))
    }

    /// Builds a uniform compressed-latent layout.
    pub fn compressed_layouts(
        layer_count: usize,
        latent_dim: i32,
        rotary_dim: i32,
    ) -> Result<LayerSchedule<LayerCachePolicy>, PromptCacheError> {
        let policies = (0..layer_count)
            .map(|_| {
                LayerCachePolicy::compressed_latent_rotary(
                    AttentionPolicy::Full,
                    latent_dim,
                    rotary_dim,
                )
                .map_err(PromptCacheError::from)
            })
            .collect::<Result<Vec<_>, _>>()?;
        LayerSchedule::new(layer_count, policies)
            .map_err(|error| PromptCacheError::Malformed(error.to_string()))
    }

    /// Validates the owned layer range and every policy.
    pub fn validate(&self) -> Result<(), PromptCacheError> {
        IdentityLayout {
            layer_count: self.layer_count,
            global_layer_start: self.global_layer_start,
            global_layer_end: self.global_layer_end,
            batch_size: 1,
            layer_layout: &self.layer_layout,
            layer_prefix_offsets: &self.layer_prefix_offsets,
            state_segments: &self.state_segments,
            topology: &self.topology,
        }
        .validate("loaded model")
    }

    /// Returns one architecture-declared state segment by stable identity.
    pub fn state_segment(&self, id: &str) -> Result<&PromptCacheStateSegment, PromptCacheError> {
        self.validate()?;
        self.state_segments
            .iter()
            .find(|segment| segment.id() == id)
            .ok_or_else(|| {
                PromptCacheError::Incompatible(format!(
                    "loaded model has no prompt-cache state segment {id:?}"
                ))
            })
    }

    /// Selects one named state segment as a validated standalone identity.
    pub fn select_state_segment(&self, id: &str) -> Result<Self, PromptCacheError> {
        let layers = self.state_segment(id)?.layers();
        let length = layers.len();
        let global_layer_start = self
            .global_layer_start
            .checked_add(layers.start)
            .ok_or_else(|| PromptCacheError::Malformed("state segment range overflowed".into()))?;
        let global_layer_end = global_layer_start
            .checked_add(length)
            .ok_or_else(|| PromptCacheError::Malformed("state segment range overflowed".into()))?;
        let layer_layout = LayerSchedule::new(
            length,
            self.layer_layout
                .iter()
                .skip(layers.start)
                .take(length)
                .cloned()
                .collect(),
        )
        .map_err(|error| PromptCacheError::Malformed(error.to_string()))?;
        let layer_prefix_offsets = self
            .layer_prefix_offsets
            .get(layers.clone())
            .ok_or_else(|| PromptCacheError::Malformed("state segment range is invalid".into()))?
            .to_vec();
        let selected = Self {
            model_family: self.model_family.clone(),
            effective_model_type: self.effective_model_type.clone(),
            architecture_fingerprint: self.architecture_fingerprint.clone(),
            layer_count: self.layer_count,
            global_layer_start,
            global_layer_end,
            sink_tokens: self.sink_tokens,
            topology: self.topology.clone(),
            layer_layout,
            layer_prefix_offsets,
            state_segments: vec![PromptCacheStateSegment::new(id, 0..length)?],
        };
        selected.validate()?;
        Ok(selected)
    }
}

struct IdentityLayout<'a> {
    layer_count: usize,
    global_layer_start: usize,
    global_layer_end: usize,
    batch_size: usize,
    layer_layout: &'a LayerSchedule<LayerCachePolicy>,
    layer_prefix_offsets: &'a [i32],
    state_segments: &'a [PromptCacheStateSegment],
    topology: &'a PromptCacheTopology,
}

impl IdentityLayout<'_> {
    fn validate(&self, subject: &str) -> Result<(), PromptCacheError> {
        let owned = self
            .global_layer_end
            .checked_sub(self.global_layer_start)
            .ok_or_else(|| {
                PromptCacheError::Incompatible(format!("{subject} has an invalid layer range"))
            })?;
        if self.layer_count == 0
            || self.global_layer_start >= self.global_layer_end
            || self.global_layer_end > self.layer_count
            || self.batch_size == 0
            || self.batch_size > i32::MAX as usize
            || self.layer_layout.len() != owned
            || self.layer_prefix_offsets.len() != owned
            || self.layer_prefix_offsets.iter().any(|offset| *offset > 0)
        {
            return Err(PromptCacheError::Incompatible(format!(
                "{subject} supplied {} cache layouts and {} layer prefix offsets for {owned} owned layers",
                self.layer_layout.len(),
                self.layer_prefix_offsets.len()
            )));
        }
        self.topology.validate()?;
        validate_state_segments(self.state_segments, owned)
            .map_err(|error| PromptCacheError::Incompatible(format!("{subject} {error}")))?;
        for policy in self.layer_layout.iter() {
            policy.validate()?;
        }
        Ok(())
    }
}

/// Verifies that a caller descriptor was derived from the prepared model.
pub fn validate_prompt_cache_model_identity(
    expected: &PromptCacheDescriptor,
    model: &PromptCacheModelIdentity,
) -> Result<(), PromptCacheError> {
    expected.validate()?;
    model.validate()?;
    macro_rules! require_equal {
        ($field:ident) => {
            if expected.$field != model.$field {
                return Err(PromptCacheError::Incompatible(format!(
                    "caller descriptor {} does not match the loaded model",
                    stringify!($field)
                )));
            }
        };
    }
    require_equal!(model_family);
    require_equal!(effective_model_type);
    require_equal!(architecture_fingerprint);
    require_equal!(layer_count);
    require_equal!(global_layer_start);
    require_equal!(global_layer_end);
    require_equal!(sink_tokens);
    require_equal!(topology);
    require_equal!(layer_layout);
    require_equal!(layer_prefix_offsets);
    require_equal!(state_segments);
    Ok(())
}

fn validate_state_segments(
    segments: &[PromptCacheStateSegment],
    owned: usize,
) -> Result<(), String> {
    if segments.is_empty() {
        return Err("has no named state segments".into());
    }
    let mut ids = BTreeSet::new();
    let mut next = 0;
    for segment in segments {
        if segment.id.trim().is_empty() {
            return Err("has an empty state segment identity".into());
        }
        if !ids.insert(segment.id.as_str()) {
            return Err(format!(
                "has duplicate state segment identity {:?}",
                segment.id
            ));
        }
        if segment.layers.start != next
            || segment.layers.end <= segment.layers.start
            || segment.layers.end > owned
        {
            return Err(format!(
                "state segment {:?} range {}..{} does not continue an exact partition of {owned} owned layers",
                segment.id, segment.layers.start, segment.layers.end
            ));
        }
        next = segment.layers.end;
    }
    if next != owned {
        return Err(format!(
            "state segments cover {next} of {owned} owned layers"
        ));
    }
    Ok(())
}

/// Rank-local topology recorded in a prompt-cache manifest.
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct PromptCacheTopology {
    /// Ordered-stage partition size and rank.
    stage: Option<(usize, usize)>,
    /// State-shard partition size and rank.
    shard: Option<(usize, usize)>,
    /// Addressable-group size and rank.
    addressable: Option<(usize, usize)>,
    /// Whether cache state is replicated on the addressable axis.
    addressable_state_replicated: bool,
}

impl Default for PromptCacheTopology {
    fn default() -> Self {
        Self {
            stage: None,
            shard: None,
            addressable: None,
            addressable_state_replicated: true,
        }
    }
}

impl PromptCacheTopology {
    /// Creates and validates an exact cache-placement topology.
    pub fn new(
        stage: Option<(usize, usize)>,
        shard: Option<(usize, usize)>,
        addressable: Option<(usize, usize)>,
        addressable_state_replicated: bool,
    ) -> Result<Self, PromptCacheError> {
        let topology = Self {
            stage,
            shard,
            addressable,
            addressable_state_replicated,
        };
        topology.validate()?;
        Ok(topology)
    }

    /// Returns ordered-stage size and rank when partitioned.
    pub const fn stage(&self) -> Option<(usize, usize)> {
        self.stage
    }

    /// Returns state-shard size and rank when partitioned.
    pub const fn shard(&self) -> Option<(usize, usize)> {
        self.shard
    }

    /// Returns addressable-group size and rank when partitioned.
    pub const fn addressable(&self) -> Option<(usize, usize)> {
        self.addressable
    }

    /// Returns whether cache state is replicated on the addressable axis.
    pub const fn addressable_state_replicated(&self) -> bool {
        self.addressable_state_replicated
    }

    /// Validates every optional world-size/rank pair.
    pub fn validate(&self) -> Result<(), PromptCacheError> {
        for (name, axis) in [
            ("stage", self.stage),
            ("state shard", self.shard),
            ("addressable group", self.addressable),
        ] {
            if axis.is_some_and(|(size, rank)| size == 0 || rank >= size) {
                return Err(PromptCacheError::Malformed(format!(
                    "invalid {name} topology"
                )));
            }
        }
        Ok(())
    }

    /// Returns the rank identity stored on cache blocks, if distributed.
    pub fn cache_rank_identity(&self) -> Option<CacheRankIdentity> {
        (self.stage.is_some() || self.shard.is_some() || self.addressable.is_some()).then(|| {
            CacheRankIdentity::new(
                self.stage.map(|(_, rank)| rank),
                self.shard.map(|(_, rank)| rank),
                self.addressable.map(|(_, rank)| rank),
            )
        })
    }
}

/// Explicit publication behavior for a reusable prefix cache.
#[derive(Debug, Clone, Default)]
pub struct PromptCacheOptions {
    /// Optional application grouping label; never used for compatibility.
    application_namespace: Option<String>,
    /// Allows atomically replacing an existing destination.
    replace_existing: bool,
}

impl PromptCacheOptions {
    /// Creates validated prompt-cache publication options.
    pub fn new(
        application_namespace: Option<String>,
        replace_existing: bool,
    ) -> Result<Self, PromptCacheError> {
        if application_namespace
            .as_deref()
            .is_some_and(|namespace| namespace.trim().is_empty())
        {
            return Err(PromptCacheError::Malformed(
                "prompt-cache application namespace must not be empty".into(),
            ));
        }
        Ok(Self {
            application_namespace,
            replace_existing,
        })
    }

    /// Returns the optional application grouping label.
    pub fn application_namespace(&self) -> Option<&str> {
        self.application_namespace.as_deref()
    }

    /// Returns whether an existing destination may be replaced atomically.
    pub const fn replace_existing(&self) -> bool {
        self.replace_existing
    }
}

/// Versioned metadata inspectable without loading backend arrays.
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct PromptCacheManifest {
    /// Persistence schema version.
    pub schema_version: u32,
    /// Model architecture family.
    pub model_family: String,
    /// Effective normalized model type.
    pub effective_model_type: String,
    /// Caller-selected checkpoint identity.
    pub checkpoint_fingerprint: String,
    /// Identity of all content that produced this prefix.
    pub prefix_content_fingerprint: String,
    /// Cache-relevant architecture identity.
    pub architecture_fingerprint: String,
    /// Total model layer count.
    pub layer_count: usize,
    /// Inclusive first global layer represented locally.
    pub global_layer_start: usize,
    /// Exclusive global layer boundary represented locally.
    pub global_layer_end: usize,
    /// Block size used by the producer.
    pub block_size_tokens: i32,
    /// Prefix batch size.
    pub batch_size: usize,
    /// Exact prefix token count.
    pub total_prefix_tokens: usize,
    /// SHA-256 over little-endian prefix token IDs.
    pub prefix_sha256: String,
    /// Ordered cache layout for the owned layer range.
    pub layer_layout: LayerSchedule<LayerCachePolicy>,
    /// Per-layer processed-token delta relative to the prefix.
    pub layer_prefix_offsets: Vec<i32>,
    /// Architecture-declared named ranges in the ordered state layout.
    pub state_segments: Vec<PromptCacheStateSegment>,
    /// Pinned prefix or sink token count.
    pub sink_tokens: usize,
    /// Distributed rank-local representation.
    pub topology: PromptCacheTopology,
    /// Optional non-authoritative application grouping label.
    pub application_namespace: Option<String>,
    /// Ordered immutable cache blocks.
    pub blocks: Vec<PromptCacheBlock>,
    /// Ordered fixed-size state tensors.
    pub state_tensors: Vec<PromptCacheStateTensor>,
}

/// One independently validated fixed-size state tensor catalog entry.
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct PromptCacheStateTensor {
    /// Layer owner.
    pub owner: StateTensorOwner,
    /// Semantic role declared by the canonical layout.
    pub role: StateTensorRole,
    /// Safe relative backend shard path.
    pub shard: String,
    /// Array name within the shard.
    pub array: String,
    /// Exact stored shape.
    pub shape: Vec<i32>,
    /// Exact stored dtype.
    pub dtype: String,
    /// Logical bytes in the array.
    pub logical_bytes: u64,
    /// SHA-256 of the exact payload bytes.
    pub payload_sha256: String,
}

/// One cache block catalog entry in a prompt-cache manifest.
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct PromptCacheBlock {
    /// Architecture-global layer identity.
    pub global_layer: usize,
    /// Stored attention representation.
    pub representation: CacheRepresentation,
    /// Inclusive absolute token position.
    pub start: i64,
    /// Exclusive absolute token position.
    pub end: i64,
    /// Optional rank identity.
    pub rank: Option<CacheRankIdentity>,
    /// Safe relative backend shard path.
    pub shard: String,
    /// First array name.
    pub first_array: String,
    /// Second array name.
    pub second_array: String,
    /// First array shape.
    pub first_shape: Vec<i32>,
    /// Second array shape.
    pub second_shape: Vec<i32>,
    /// First array dtype.
    pub first_dtype: String,
    /// Second array dtype.
    pub second_dtype: String,
    /// Logical bytes in both arrays.
    pub logical_bytes: u64,
    /// SHA-256 of the exact payload bytes.
    pub payload_sha256: String,
}

impl PromptCacheManifest {
    /// Validates all backend-independent schema, geometry, and coverage rules.
    pub fn validate(&self) -> Result<(), PromptCacheError> {
        if self.schema_version != PROMPT_CACHE_SCHEMA_VERSION {
            return Err(PromptCacheError::UnsupportedSchema(self.schema_version));
        }
        let owned = self.global_layer_end.checked_sub(self.global_layer_start);
        if self.prefix_content_fingerprint.is_empty()
            || self.block_size_tokens <= 0
            || self.layer_count == 0
            || self.global_layer_start >= self.global_layer_end
            || self.global_layer_end > self.layer_count
            || owned != Some(self.layer_layout.len())
            || owned != Some(self.layer_prefix_offsets.len())
            || self.batch_size == 0
            || self.batch_size > i32::MAX as usize
            || self.total_prefix_tokens == 0
            || !is_sha256_hex(&self.prefix_sha256)
        {
            return Err(PromptCacheError::Malformed(
                "invalid global cache dimensions".into(),
            ));
        }
        self.topology.validate()?;
        validate_state_segments(&self.state_segments, self.layer_layout.len())
            .map_err(PromptCacheError::Malformed)?;
        for (index, offset) in self.layer_prefix_offsets.iter().enumerate() {
            layer_prefix_tokens(self.total_prefix_tokens, *offset).map_err(|error| {
                PromptCacheError::Malformed(format!(
                    "invalid prefix frontier for global layer {}: {error}",
                    self.global_layer_start + index
                ))
            })?;
        }
        for (index, policy) in self.layer_layout.iter().enumerate() {
            policy.validate().map_err(|error| {
                PromptCacheError::Malformed(format!(
                    "invalid policy for global layer {}: {error}",
                    self.global_layer_start + index
                ))
            })?;
        }
        self.validate_blocks()?;
        self.validate_state_tensors()?;
        self.validate_coverage()
    }

    /// Validates compatibility with a caller descriptor and exact prefix IDs.
    pub fn validate_compatibility(
        &self,
        expected: &PromptCacheDescriptor,
        prefix_token_ids: &[u32],
    ) -> Result<(), PromptCacheError> {
        self.validate()?;
        expected.validate()?;
        macro_rules! require_equal {
            ($field:ident) => {
                if self.$field != expected.$field {
                    return Err(PromptCacheError::Incompatible(format!(
                        "{} mismatch",
                        stringify!($field)
                    )));
                }
            };
        }
        require_equal!(model_family);
        require_equal!(effective_model_type);
        require_equal!(checkpoint_fingerprint);
        require_equal!(prefix_content_fingerprint);
        require_equal!(architecture_fingerprint);
        require_equal!(layer_count);
        require_equal!(global_layer_start);
        require_equal!(global_layer_end);
        require_equal!(batch_size);
        require_equal!(layer_layout);
        require_equal!(layer_prefix_offsets);
        require_equal!(state_segments);
        require_equal!(sink_tokens);
        require_equal!(topology);
        if self.total_prefix_tokens != prefix_token_ids.len()
            || self.prefix_sha256 != prompt_cache_token_fingerprint(prefix_token_ids)
        {
            return Err(PromptCacheError::PrefixIdentityMismatch);
        }
        Ok(())
    }

    fn validate_blocks(&self) -> Result<(), PromptCacheError> {
        let mut previous = None;
        for block in &self.blocks {
            let layer_index = block
                .global_layer
                .checked_sub(self.global_layer_start)
                .filter(|index| *index < self.layer_layout.len())
                .ok_or_else(|| {
                    PromptCacheError::Malformed(format!(
                        "cache block layer {} is outside the owned range",
                        block.global_layer
                    ))
                })?;
            let layer_tokens = layer_prefix_tokens(
                self.total_prefix_tokens,
                self.layer_prefix_offsets[layer_index],
            )?;
            if block.start < 0
                || block.end <= block.start
                || block.end > layer_tokens as i64
                || block.logical_bytes == 0
                || block.first_shape.is_empty()
                || block.second_shape.is_empty()
                || !is_sha256_hex(&block.payload_sha256)
                || !safe_relative_path(&block.shard)
            {
                return Err(PromptCacheError::Malformed(format!(
                    "invalid block at layer {} range {}..{}",
                    block.global_layer, block.start, block.end
                )));
            }
            let order = (block.global_layer, block.start, block.end);
            if previous.is_some_and(|value| value >= order) {
                return Err(PromptCacheError::Malformed(format!(
                    "prompt-cache blocks are reordered or duplicated at layer {} range {}..{}",
                    block.global_layer, block.start, block.end
                )));
            }
            previous = Some(order);
            let policy = self.layer_layout.get(layer_index).expect("bounded");
            let (representation, first_shape, second_shape) =
                block_geometry(policy, self.batch_size, block.end - block.start)?;
            if block.representation != representation
                || block.first_shape != first_shape
                || block.second_shape != second_shape
            {
                return Err(PromptCacheError::Malformed(format!(
                    "global layer {} payload geometry does not match its policy: actual {:?}/{:?}/{:?}, expected {:?}/{first_shape:?}/{second_shape:?}",
                    block.global_layer,
                    block.representation,
                    block.first_shape,
                    block.second_shape,
                    representation,
                )));
            }
            if block.rank != self.topology.cache_rank_identity() {
                return Err(PromptCacheError::Malformed(
                    "block rank identity does not match the recorded topology".into(),
                ));
            }
            let names = array_names(block.representation);
            if block.first_array != names.0
                || block.second_array != names.1
                || block.first_dtype != block.second_dtype
            {
                return Err(PromptCacheError::Malformed(
                    "block array names or dtypes do not match its representation".into(),
                ));
            }
        }
        Ok(())
    }

    fn validate_state_tensors(&self) -> Result<(), PromptCacheError> {
        let actual = self
            .state_tensors
            .iter()
            .map(|entry| (entry.owner, entry.role))
            .collect::<BTreeSet<_>>();
        if actual.len() != self.state_tensors.len() {
            return Err(PromptCacheError::Malformed(
                "fixed-state tensors contain duplicate owner/role entries".into(),
            ));
        }
        let mut expected = Vec::new();
        for (index, layer) in self.layer_layout.iter().enumerate() {
            let owner = StateTensorOwner::Layer(self.global_layer_start + index);
            let tokens =
                layer_prefix_tokens(self.total_prefix_tokens, self.layer_prefix_offsets[index])?;
            for policy in layer.fixed_state() {
                // A zero-token frontier has no materialized recurrent value,
                // even when that value is required once execution begins.
                if (tokens != 0 && policy.is_required_for(tokens))
                    || actual.contains(&(owner, policy.role))
                {
                    expected.push((owner, policy, tokens));
                }
            }
        }
        if self.state_tensors.len() != expected.len() {
            return Err(PromptCacheError::Malformed(format!(
                "fixed-state tensor count {} does not match layout count {}",
                self.state_tensors.len(),
                expected.len()
            )));
        }
        for (entry, (owner, policy, tokens)) in self.state_tensors.iter().zip(expected) {
            if entry.owner != owner
                || entry.role != policy.role
                || entry.shape != policy.resolved_shape(self.batch_size, tokens)?
                || !policy.accepts_dtype_name(&entry.dtype)
                || entry.logical_bytes == 0
                || !is_sha256_hex(&entry.payload_sha256)
                || entry.array != "state"
                || !safe_relative_path(&entry.shard)
            {
                return Err(PromptCacheError::Malformed(format!(
                    "fixed-state tensor {:?} for {:?} does not match its policy: shape {:?} and dtype {}, expected shape {:?}",
                    entry.role,
                    entry.owner,
                    entry.shape,
                    entry.dtype,
                    policy.resolved_shape(self.batch_size, tokens)?,
                )));
            }
        }
        Ok(())
    }

    fn validate_coverage(&self) -> Result<(), PromptCacheError> {
        let mut by_layer: BTreeMap<usize, Vec<&PromptCacheBlock>> = BTreeMap::new();
        for block in &self.blocks {
            by_layer.entry(block.global_layer).or_default().push(block);
        }
        for (index, policy) in self.layer_layout.iter().enumerate() {
            let layer = self.global_layer_start + index;
            let tokens =
                layer_prefix_tokens(self.total_prefix_tokens, self.layer_prefix_offsets[index])?;
            let mut blocks = by_layer.remove(&layer).unwrap_or_default();
            if policy.attention().is_none() {
                if !blocks.is_empty() {
                    return Err(PromptCacheError::Malformed(format!(
                        "stateless global layer {layer} has unexpected blocks"
                    )));
                }
                continue;
            }
            if blocks.is_empty() {
                if tokens == 0 {
                    continue;
                }
                return Err(PromptCacheError::Malformed(format!(
                    "missing blocks for global layer {layer}"
                )));
            }
            blocks.sort_by_key(|block| block.start);
            let required = required_persisted_start(policy, tokens)?;
            let mut end = blocks[0].start;
            if end > required
                || (matches!(policy.attention(), Some(AttentionPolicy::Full)) && end != 0)
            {
                return Err(PromptCacheError::Malformed(format!(
                    "global layer {layer} starts at {end}, but its policy requires history from {required}"
                )));
            }
            for block in blocks {
                if block.start != end {
                    return Err(PromptCacheError::Malformed(format!(
                        "gap or overlap at global layer {layer}: expected {end}, found {}",
                        block.start
                    )));
                }
                end = block.end;
            }
            if end != tokens as i64 {
                return Err(PromptCacheError::Malformed(format!(
                    "global layer {layer} ends at {end}, expected {tokens}"
                )));
            }
        }
        Ok(())
    }
}

fn block_geometry(
    policy: &LayerCachePolicy,
    batch_size: usize,
    token_count: i64,
) -> Result<(CacheRepresentation, Vec<i32>, Vec<i32>), PromptCacheError> {
    let batch = i32::try_from(batch_size)
        .map_err(|_| PromptCacheError::Malformed("prompt-cache batch exceeds i32".into()))?;
    let tokens = i32::try_from(token_count)
        .map_err(|_| PromptCacheError::Malformed("cache block token count exceeds i32".into()))?;
    match policy {
        LayerCachePolicy::NoState | LayerCachePolicy::FixedState { .. } => Err(
            PromptCacheError::Malformed("stateless layer has an attention payload".into()),
        ),
        LayerCachePolicy::KeyValue {
            num_key_value_heads,
            head_dim,
            ..
        }
        | LayerCachePolicy::KeyValueWithFixedState {
            num_key_value_heads,
            head_dim,
            ..
        } => {
            let shape = vec![
                batch,
                num_key_value_heads.get() as i32,
                tokens,
                head_dim.get() as i32,
            ];
            Ok((CacheRepresentation::KeyValue, shape.clone(), shape))
        }
        LayerCachePolicy::KeyOnly {
            num_key_heads,
            head_dim,
            ..
        }
        | LayerCachePolicy::KeyOnlyWithFixedState {
            num_key_heads,
            head_dim,
            ..
        } => Ok((
            CacheRepresentation::KeyValue,
            vec![
                batch,
                num_key_heads.get() as i32,
                tokens,
                head_dim.get() as i32,
            ],
            vec![batch, num_key_heads.get() as i32, tokens, 1],
        )),
        LayerCachePolicy::CompressedLatentRotary {
            latent_dim,
            rotary_dim,
            ..
        } => Ok((
            CacheRepresentation::CompressedLatentRotary,
            vec![batch, tokens, latent_dim.get() as i32],
            vec![batch, tokens, rotary_dim.get() as i32],
        )),
    }
}

fn required_persisted_start(
    policy: &LayerCachePolicy,
    total_prefix_tokens: usize,
) -> Result<i64, PromptCacheError> {
    let total = i64::try_from(total_prefix_tokens).map_err(|_| {
        PromptCacheError::Malformed("prompt-cache prefix length exceeds i64".into())
    })?;
    match policy.attention() {
        None | Some(AttentionPolicy::Full) => Ok(0),
        Some(AttentionPolicy::Sliding { window }) => {
            Ok((total - i64::from(window.get() - 1)).max(0))
        }
    }
}

fn layer_prefix_tokens(total: usize, offset: i32) -> Result<usize, PromptCacheError> {
    if offset > 0 {
        return Err(PromptCacheError::Malformed(
            "layer prefix offsets must not advance beyond the persisted prefix".into(),
        ));
    }
    total
        .checked_sub(offset.unsigned_abs() as usize)
        .ok_or_else(|| {
            PromptCacheError::Malformed(format!(
                "layer prefix offset {offset} precedes the start of a {total}-token prefix"
            ))
        })
}

fn array_names(representation: CacheRepresentation) -> (&'static str, &'static str) {
    match representation {
        CacheRepresentation::KeyValue => ("keys", "values"),
        CacheRepresentation::CompressedLatentRotary => ("latent", "rotary_key"),
    }
}

fn safe_relative_path(value: &str) -> bool {
    !value.is_empty()
        && !value.starts_with('/')
        && value
            .split('/')
            .all(|part| !part.is_empty() && part != "." && part != "..")
        && !value.contains('\\')
}

fn is_sha256_hex(value: &str) -> bool {
    value.len() == 64
        && value
            .bytes()
            .all(|byte| byte.is_ascii_digit() || (b'a'..=b'f').contains(&byte))
}

/// Derives a stable cache architecture fingerprint from ordered semantic fields.
pub fn derive_prompt_cache_architecture_fingerprint<I, K, V>(
    model_family: &str,
    fields: I,
) -> String
where
    I: IntoIterator<Item = (K, V)>,
    K: Into<String>,
    V: Into<String>,
{
    let mut fields = fields
        .into_iter()
        .map(|(key, value)| (key.into(), value.into()))
        .collect::<Vec<_>>();
    fields.sort_unstable();
    let mut hasher = Sha256::new();
    hash_component(&mut hasher, b"eredu-prompt-cache-architecture-v1");
    hash_component(&mut hasher, model_family.as_bytes());
    for (key, value) in fields {
        hash_component(&mut hasher, key.as_bytes());
        hash_component(&mut hasher, value.as_bytes());
    }
    format!("sha256:{}", hex(hasher.finalize()))
}

/// Hashes exact prefix token IDs as little-endian `u32` values.
pub fn prompt_cache_token_fingerprint(tokens: &[u32]) -> String {
    let mut hasher = Sha256::new();
    for token in tokens {
        hasher.update(token.to_le_bytes());
    }
    hex(hasher.finalize())
}

fn hash_component(hasher: &mut Sha256, value: &[u8]) {
    hasher.update((value.len() as u64).to_le_bytes());
    hasher.update(value);
}

fn hex(digest: impl AsRef<[u8]>) -> String {
    const HEX: &[u8; 16] = b"0123456789abcdef";
    let mut encoded = String::with_capacity(digest.as_ref().len() * 2);
    for &byte in digest.as_ref() {
        encoded.push(HEX[usize::from(byte >> 4)] as char);
        encoded.push(HEX[usize::from(byte & 0x0f)] as char);
    }
    encoded
}

/// Invalid reusable prompt-cache identity, schema, or catalog.
#[derive(Debug, Clone, Eq, PartialEq, thiserror::Error)]
pub enum PromptCacheError {
    /// A layer or state policy is invalid.
    #[error(transparent)]
    Policy(#[from] CachePolicyError),
    /// The persistence schema version is unsupported.
    #[error("unsupported prompt cache schema version {0}")]
    UnsupportedSchema(u32),
    /// The portable manifest structure is malformed.
    #[error("malformed prompt cache manifest: {0}")]
    Malformed(String),
    /// The prepared model or caller identity differs from the producer.
    #[error("incompatible prompt cache: {0}")]
    Incompatible(String),
    /// Exact prefix IDs differ from the persisted identity.
    #[error("prompt cache prefix token identity does not match")]
    PrefixIdentityMismatch,
}

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

    fn manifest() -> PromptCacheManifest {
        let layout = LayerSchedule::new(
            1,
            vec![LayerCachePolicy::key_value(AttentionPolicy::Full, 2, 4).unwrap()],
        )
        .unwrap();
        PromptCacheManifest {
            schema_version: PROMPT_CACHE_SCHEMA_VERSION,
            model_family: "llama".into(),
            effective_model_type: "llama".into(),
            checkpoint_fingerprint: "checkpoint".into(),
            prefix_content_fingerprint: "content".into(),
            architecture_fingerprint: "architecture".into(),
            layer_count: 1,
            global_layer_start: 0,
            global_layer_end: 1,
            block_size_tokens: 2,
            batch_size: 1,
            total_prefix_tokens: 2,
            prefix_sha256: prompt_cache_token_fingerprint(&[7, 8]),
            layer_layout: layout,
            layer_prefix_offsets: vec![0],
            state_segments: vec![PromptCacheStateSegment::new("state", 0..1).unwrap()],
            sink_tokens: 0,
            topology: PromptCacheTopology::default(),
            application_namespace: None,
            blocks: vec![PromptCacheBlock {
                global_layer: 0,
                representation: CacheRepresentation::KeyValue,
                start: 0,
                end: 2,
                rank: None,
                shard: "blocks/layer-0.safetensors".into(),
                first_array: "keys".into(),
                second_array: "values".into(),
                first_shape: vec![1, 2, 2, 4],
                second_shape: vec![1, 2, 2, 4],
                first_dtype: "Float16".into(),
                second_dtype: "Float16".into(),
                logical_bytes: 64,
                payload_sha256: "0".repeat(64),
            }],
            state_tensors: vec![],
        }
    }

    #[test]
    fn manifest_round_trips_and_validates_without_a_backend() {
        let manifest = manifest();
        manifest.validate().unwrap();
        let json = serde_json::to_string(&manifest).unwrap();
        let restored: PromptCacheManifest = serde_json::from_str(&json).unwrap();
        restored.validate().unwrap();
        assert_eq!(restored, manifest);
    }

    #[test]
    fn descriptor_derives_every_model_owned_field_from_identity() {
        let manifest = manifest();
        let identity = PromptCacheModelIdentity {
            model_family: manifest.model_family.clone(),
            effective_model_type: manifest.effective_model_type.clone(),
            architecture_fingerprint: manifest.architecture_fingerprint.clone(),
            layer_count: manifest.layer_count,
            global_layer_start: manifest.global_layer_start,
            global_layer_end: manifest.global_layer_end,
            sink_tokens: manifest.sink_tokens,
            topology: manifest.topology.clone(),
            layer_layout: manifest.layer_layout.clone(),
            layer_prefix_offsets: manifest.layer_prefix_offsets.clone(),
            state_segments: manifest.state_segments.clone(),
        };

        let descriptor = PromptCacheDescriptor::from_model_identity(
            identity.clone(),
            "caller-checkpoint",
            "caller-prefix-content",
            3,
        )
        .unwrap();

        validate_prompt_cache_model_identity(&descriptor, &identity).unwrap();
        assert_eq!(descriptor.checkpoint_fingerprint, "caller-checkpoint");
        assert_eq!(
            descriptor.prefix_content_fingerprint,
            "caller-prefix-content"
        );
        assert_eq!(descriptor.batch_size, 3);
        assert!(
            PromptCacheDescriptor::from_model_identity(identity, "checkpoint", "prefix", 0)
                .is_err()
        );
    }

    #[test]
    fn architecture_fingerprint_uses_the_eredu_domain() {
        let fingerprint = derive_prompt_cache_architecture_fingerprint(
            "llama",
            [("layers", "32"), ("hidden_size", "4096")],
        );
        assert_eq!(
            fingerprint,
            "sha256:9ee0b30ea8687d04eb4b65db3a58ccfff0a72bdd502805e9fdd6edb223ca5949"
        );
    }

    #[test]
    fn zero_frontier_prediction_state_needs_no_materialized_tensor() {
        let recurrent = crate::cache::StateTensorPolicy::new(
            StateTensorRole::Recurrent,
            vec![crate::cache::StateTensorDimension::Batch],
            crate::cache::StateTensorDtype::Floating,
            crate::cache::MutableStateResidency::LayerScopedOffloadable,
        )
        .unwrap();
        let mut value = manifest();
        value.total_prefix_tokens = 1;
        value.prefix_sha256 = prompt_cache_token_fingerprint(&[7]);
        value.layer_prefix_offsets = vec![-1];
        value.layer_layout = LayerSchedule::new(
            1,
            vec![LayerCachePolicy::fixed_only(vec![recurrent]).unwrap()],
        )
        .unwrap();
        value.blocks.clear();
        value.state_tensors.clear();
        value.validate().unwrap();
    }

    #[test]
    fn rejects_bad_topology_geometry_coverage_and_paths() {
        let mut value = manifest();
        value.topology.shard = Some((1, 1));
        assert!(value.validate().is_err());
        let mut value = manifest();
        value.blocks[0].first_shape[2] = 1;
        assert!(value.validate().is_err());
        let mut value = manifest();
        value.blocks[0].shard = "../escape".into();
        assert!(value.validate().is_err());
    }

    #[test]
    fn identity_and_prefix_compatibility_fail_closed() {
        let manifest = manifest();
        let descriptor = PromptCacheDescriptor {
            model_family: manifest.model_family.clone(),
            effective_model_type: manifest.effective_model_type.clone(),
            checkpoint_fingerprint: manifest.checkpoint_fingerprint.clone(),
            prefix_content_fingerprint: manifest.prefix_content_fingerprint.clone(),
            architecture_fingerprint: manifest.architecture_fingerprint.clone(),
            layer_count: 1,
            global_layer_start: 0,
            global_layer_end: 1,
            batch_size: 1,
            layer_layout: manifest.layer_layout.clone(),
            layer_prefix_offsets: vec![0],
            state_segments: manifest.state_segments.clone(),
            sink_tokens: 0,
            topology: PromptCacheTopology::default(),
        };
        manifest
            .validate_compatibility(&descriptor, &[7, 8])
            .unwrap();
        assert!(manifest
            .validate_compatibility(&descriptor, &[8, 7])
            .is_err());
        let mut renamed = descriptor.clone();
        renamed.state_segments = vec![PromptCacheStateSegment::new("renamed", 0..1).unwrap()];
        assert!(matches!(
            manifest.validate_compatibility(&renamed, &[7, 8]),
            Err(PromptCacheError::Incompatible(_))
        ));
        let mut invalid = descriptor;
        invalid.layer_prefix_offsets[0] = 1;
        assert!(matches!(
            invalid.validate(),
            Err(PromptCacheError::Incompatible(_))
        ));

        let mut malformed = manifest.clone();
        malformed.state_segments = vec![PromptCacheStateSegment::new("state", 0..2).unwrap()];
        assert!(matches!(
            malformed.validate(),
            Err(PromptCacheError::Malformed(_))
        ));
    }
}