Papers
Topics
Authors
Recent
Search
2000 character limit reached

Cross-Model KV Cache Transfer in LLM Families: A Closed-Form Linear Mapping for Prefill Reuse

Published 4 Aug 2026 in cs.LG | (2608.03893v1)

Abstract: Production deployments often swap between different-sized models in a family for cost-quality cascading, mid-conversation switching, and routing, and each swap forces the receiver to repay the prefill from scratch. We propose cross-model KV cache transfer, where the receiver reuses the source's KV cache, skipping prefill. We find that cross-model KV has substantial linear structure across matched-KV pairs, where source and target share KV head count and per-head dimension. On Qwen3 14B->32B, one source layer explains 56% of variance in the target's keys and 32% in values, rising to 79% and 65% with multiple source layers. Building on this, we design a closed-form ridge mapper that operates per head and proceeds in three steps. First, for each target layer we select the top-k most predictive source layers and concatenate their KV as input. Second, we strip RoPE from the keys before mapping, so the fit is position-free and reusable across context lengths. Third, we fit ridge regression on a small calibration set of 500 FineWeb-Edu sequences of 1,024 tokens each. Surprisingly, across six pairs in three families, this linear mapper retains 73-98% of the receiver's standalone-prefill accuracy on four pairs, while two degrade sharply. A nonlinear MLP recovers up to +37 pp HellaSwag retention on the failures. The mapper runs 2.7-25x faster than re-prefill and remains stable across multi-turn handoff, making cross-model KV cache transfer practical.

Summary

  • The paper introduces a per-head, closed-form ridge mapper that combines selected source layers, removes and reapplies RoPE, and transfers KV caches without target-side prefill recomputation.
  • Across six matched-KV model pairs, four retain 73%–98% of standalone accuracy, while Qwen3 14B→32B achieves 97.6% retention and up to 25× lower prefill latency at 32K tokens.
  • The results show that attention-output similarity predicts transfer quality better than global reconstruction error, and nonlinear MLP mappers recover up to 36.8 percentage points on difficult Ministral pairs.

Cross-Model KV Cache Transfer in LLM Families

Problem formulation and motivation

“Cross-Model KV Cache Transfer in LLM Families: A Closed-Form Linear Mapping for Prefill Reuse” (2608.03893) studies a systems problem created by multi-model LLM serving. Cost-quality cascades, routing policies, and mid-conversation model switching frequently move an active session between differently sized models in the same family. Although prefix caching avoids repeated prefill for requests served by one model, it does not solve the inter-model case: the receiving model normally recomputes the entire prefix to construct its own key-value cache.

The paper formulates model switching as a cache-representation transformation problem. Given a source model S\mathcal{S} and target model T\mathcal{T}, the objective is to construct an approximate target cache C^T\hat{\mathcal{C}}_{\mathcal{T}} from the source cache CS\mathcal{C}_{\mathcal{S}}, such that decoding from the transformed cache preserves the target model’s downstream behavior. This framing is important because it evaluates transfer by task accuracy and perplexity rather than by cache reconstruction error alone. A cache can have favorable average R2R^2 while introducing errors in the particular subspaces that determine attention scores and attention outputs.

The method is restricted experimentally to within-family pairs with matched KV head counts and matched per-head dimensions. The models may nevertheless differ substantially in parameter count, hidden dimension, and depth. The serving pipeline consists of precomputing the source cache, applying a learned-but-closed-form transformation to each source layer’s keys and values, and passing the resulting target-format cache directly to the target decoder. Figure 1

Figure 1: A per-head linear map converts the source model’s prefetched KV cache into the target model’s expected representation, eliminating target-side re-prefill.

Empirical linear structure of cross-model KV representations

The central empirical claim is that matched-KV models exhibit substantial linear structure in their cache representations. The authors perform token-level regressions between individual source and target layers, separately for keys, RoPE-stripped keys, and values. On Qwen3 14B \rightarrow 32B, a single source layer explains approximately 56%56\% of the target-key variance and 32%32\% of the target-value variance under the production-oriented analysis. Combining multiple source layers raises these figures to approximately 79%79\% and 65%65\%, respectively.

The layerwise structure is nonuniform. Source layers near particular target layers are considerably more predictive than others, producing sharp or diffuse alignment patterns depending on the architectural and depth gap. The best individual layer pair reaches a RoPE-stripped-key T\mathcal{T}0 of T\mathcal{T}1 for Qwen3 14B T\mathcal{T}2 32B, compared with T\mathcal{T}3 for the more distant Qwen3 8B T\mathcal{T}4 32B pair. This supports the paper’s claim that model-family membership is insufficient by itself: architectural proximity and training compatibility affect the quality of cache transfer.

The analysis also identifies two structural asymmetries. First, keys are generally more linearly predictable than values, with an approximate T\mathcal{T}5 gap in head-averaged T\mathcal{T}6. Second, RoPE obscures the content-level correspondence. Applying the inverse source rotation before regression and the target rotation after mapping separates position-dependent geometry from the underlying content representation. This makes the fitted map independent of the calibration sequence positions and, in principle, reusable across context lengths and RoPE configurations. Figure 2

Figure 2: Layerwise regression reveals strong but nonuniform cross-model correspondence, with RoPE-stripped keys generally exhibiting sharper and higher-T\mathcal{T}7 alignments than rotated keys or values.

The number of source layers is also consequential. On Qwen3 14B T\mathcal{T}8 32B, a single source layer captures only T\mathcal{T}9 of the all-layer C^T\hat{\mathcal{C}}_{\mathcal{T}}0 for stripped keys and C^T\hat{\mathcal{C}}_{\mathcal{T}}1 for values. The largest improvement occurs between one and four source layers, while performance approaches its all-layer value around six selected layers. Thus, the cache relationship is not adequately modeled as a one-to-one layer correspondence; complementary information is distributed across source depth.

Closed-form per-head ridge mapper

The proposed mapper is constructed independently for every target layer, target KV head, and cache type. For each target layer, the method selects the top-C^T\hat{\mathcal{C}}_{\mathcal{T}}2 source layers according to head-averaged predictive C^T\hat{\mathcal{C}}_{\mathcal{T}}3. The KV features from those layers are concatenated across source heads, and separate ridge regressions map the resulting feature vectors to the target key and value dimensions.

The transformation is therefore a collection of ordinary matrix multiplications at inference time. Given centered design matrix C^T\hat{\mathcal{C}}_{\mathcal{T}}4 and target matrix C^T\hat{\mathcal{C}}_{\mathcal{T}}5, the slope is obtained through the closed-form ridge solution

C^T\hat{\mathcal{C}}_{\mathcal{T}}6

with C^T\hat{\mathcal{C}}_{\mathcal{T}}7 in the production configuration. Biases are recovered from the feature and response means. The procedure requires no backpropagation, pair-specific end-to-end fine-tuning, or decoder-level optimization. Figure 3

Figure 3: Each target layer and head receives a separate key and value projection from the top-C^T\hat{\mathcal{C}}_{\mathcal{T}}8 predictive source layers selected by cross-layer regression.

Calibration uses 500 FineWeb-Edu sequences of 1,024 tokens, with stride-4 token subsampling producing approximately 128,000 observations per target head. The resulting mapper requires between 1.01 and 3.36 billion parameters across the evaluated pairs, corresponding to approximately 4--12 GB of storage. Fitting takes approximately 47--87 minutes on a single node equipped with eight H100 GPUs. These costs are substantial for a pairwise deployment artifact, but they are paid offline and can be amortized across many inference requests.

The factorization of RoPE is one of the method’s more technically important design choices. Source keys are inverse-rotated into content space, mapped by the regression, and then re-rotated using the target model’s positional encoding. Ablations indicate that fitting and evaluating entirely in RoPE-coupled space performs similarly at the 1,024-token calibration length, but that omission of inference-time target RoPE handling creates severe task-specific failures. The content-space formulation is consequently justified primarily by positional modularity and expected long-context generalization rather than by an immediate short-context accuracy advantage.

Main transfer results

The main evaluation covers six small-to-large pairs from Qwen3, Llama 3.1, and Ministral 3. The paper reports a pronounced two-tier outcome.

Four pairs retain between C^T\hat{\mathcal{C}}_{\mathcal{T}}9 and CS\mathcal{C}_{\mathcal{S}}0 of target standalone accuracy averaged over ARC-Challenge, HellaSwag, WinoGrande, MMLU, and GSM8K:

  • Qwen3 14B CS\mathcal{C}_{\mathcal{S}}1 32B: CS\mathcal{C}_{\mathcal{S}}2 average retention.
  • Qwen3 8B CS\mathcal{C}_{\mathcal{S}}3 32B: CS\mathcal{C}_{\mathcal{S}}4.
  • Llama 3.1 8B CS\mathcal{C}_{\mathcal{S}}5 70B: CS\mathcal{C}_{\mathcal{S}}6.
  • Ministral 3B CS\mathcal{C}_{\mathcal{S}}7 8B: CS\mathcal{C}_{\mathcal{S}}8.

The strongest result is Qwen3 14B CS\mathcal{C}_{\mathcal{S}}9 32B, where transfer slightly exceeds standalone performance on ARC-Challenge in the reported evaluation, while retaining R2R^20 of GSM8K accuracy. The Llama 3.1 8B R2R^21 70B result is particularly notable because the parameter ratio is approximately R2R^22, yet HellaSwag retention reaches R2R^23. These results support the paper’s claim that cache transfer can remain effective across large scale differences when the models share compatible internal representations.

The contradictory result is within Ministral 3. The 3B R2R^24 8B pair retains R2R^25 on average, but the 3B R2R^26 14B and 8B R2R^27 14B pairs collapse to R2R^28 and R2R^29, respectively. Floor-normalized retention falls further, to \rightarrow0 and \rightarrow1. The failures are not attributable simply to unmatched KV geometry, because all evaluated pairs satisfy the matched-head and matched-head-dimension condition. Matched KV configuration is therefore a useful prerequisite but not a sufficient predictor of transferability. Figure 4

Figure 4: Transfer quality varies with the number of selected source layers, with closer model pairs saturating earlier and more difficult pairs requiring larger cross-layer feature sets.

The source-layer sweep reinforces the importance of cross-layer aggregation. Setting \rightarrow2 is consistently inadequate, while the optimal \rightarrow3 varies by pair. Qwen3 14B \rightarrow4 32B reaches near-peak HellaSwag performance around \rightarrow5, whereas the Llama 3.1 8B \rightarrow6 70B pair continues improving at larger values, reaching its selected configuration at \rightarrow7. This dependence suggests that \rightarrow8 is not merely a computational parameter; it reflects the degree to which a target layer’s representation is distributed across source depth.

Ablation and the role of attention-sensitive error

Component ablations on Qwen3 14B \rightarrow9 32B identify cross-layer source selection as the largest contributor to performance. Reducing the mapper from 56%56\%0 to 56%56\%1 reduces stripped-key 56%56\%2 from approximately 56%56\%3 to 56%56\%4 and causes major downstream degradation. Removing ridge regularization is less damaging than removing cross-layer selection, although the unregularized high-dimensional systems are more vulnerable to conditioning problems. Figure 5

Figure 5: Sequential component removal shows that cross-layer source selection contributes more to transfer quality than either ridge regularization or the RoPE factorization under the tested configuration.

The paper’s most consequential theoretical observation is that average reconstruction quality does not determine downstream retention. Across 12 directional pair evaluations, calibration-domain key 56%56\%5 correlates weakly and negatively with HellaSwag retention, at Pearson 56%56\%6. By contrast, cosine similarity between attention outputs computed from mapped and ground-truth KV caches correlates positively with HellaSwag retention at 56%56\%7.

This distinction follows from the structure of attention. Key errors matter primarily when they alter query-key compatibility, and value errors matter primarily when they occur at positions receiving substantial attention mass. An isotropic reconstruction metric weights all feature directions equally, whereas attention selectively amplifies particular query-aligned key directions and attended value positions. The paper operationalizes this distinction through error-concentration measures in query-sensitive singular-vector subspaces for keys and attention-weighted positions for values.

The result changes how mapper quality should be diagnosed. A low global 56%56\%8 need not imply poor generation if the residual lies in attention-irrelevant directions. Conversely, a mapper with favorable average reconstruction statistics can fail if its errors concentrate in attention-critical subspaces. This explains why the two Ministral failure pairs degrade sharply despite satisfying the same basic KV compatibility conditions as the successful pairs.

Nonlinear extension

To test whether the failures reflect a limitation of linearity rather than an absence of transferable information, the authors replace ridge regression with per-head two-hidden-layer MLPs. The MLPs use 1,024-unit ReLU layers, Adam optimization, and the same MSE reconstruction objective and calibration data.

The nonlinear model does not uniformly dominate the linear mapper. On Qwen3 14B 56%56\%9 32B, HellaSwag retention changes from 32%32\%0 to 32%32\%1; on Ministral 3B 32%32\%2 8B, it falls from 32%32\%3 to 32%32\%4. However, on the two ridge failure pairs, the gains are substantial:

  • Ministral 3B 32%32\%5 14B: 32%32\%6 to 32%32\%7 HellaSwag retention, a gain of 32%32\%8 percentage points.
  • Ministral 8B 32%32\%9 14B: 79%79\%0 to 79%79\%1, a gain of 79%79\%2 percentage points. Figure 6

    Figure 6: Accuracy retention demonstrates a two-tier pattern for ridge transfer, with nonlinear mapping recovering much of the loss on the difficult Ministral pairs.

On failure pairs, the ridge mapper exhibits deeply negative evaluation-domain key 79%79\%3, indicating poor extrapolation from the FineWeb-Edu calibration distribution. The MLP moves this quantity substantially toward zero, lowers key-error concentration by approximately 79%79\%4 on average, and increases attention-output cosine by approximately 79%79\%5. The paper interprets this as error redistribution rather than simply lower Euclidean error: the MLP moves residual error away from directions that control attention.

This result is technically significant but should be interpreted cautiously. The MLP is trained with an MSE objective, not directly with an attention-output or downstream loss. Its improvement therefore does not establish that generic nonlinear regression is optimal. It does, however, show that the linear failures are at least partly recoverable and motivate attention-aligned objectives, mixture-of-experts mappers, and task- or domain-conditioned transformations.

Multi-turn stability

The paper evaluates repeated switching on 100 CoQA conversations of approximately 15 turns each, alternating between Qwen3 14B and 32B. The mapped cache remains stable over ten turns. In the small-to-large direction, the gap relative to the target standalone baseline widens by only 79%79\%6 percentage points from turn one to turn ten. In the large-to-small direction, drift increases approximately linearly at 79%79\%7 percentage points per turn. Figure 7

Figure 7: Repeated Qwen3 14B 79%79\%8 32B handoffs exhibit limited accuracy drift over ten CoQA turns, although the large-to-small direction accumulates error more steadily.

These measurements support the feasibility of mid-conversation handoff but do not establish indefinite stability. Linear drift in the large-to-small direction could become material over substantially longer agentic sessions. Moreover, the experiment uses one model family, one task, and a fixed handoff protocol. Recursive application of approximate caches, heterogeneous routing schedules, and context distributions outside the calibration domain remain open concerns.

Latency and deployment implications

The strongest practical result concerns prefill latency. On eight H100 GPUs, the mapper is substantially faster than target re-prefill across sequence lengths from 64 to 32,768 tokens. For Qwen3 14B 79%79\%9 32B, transfer takes 14.0 ms at 64 tokens and 277.6 ms at 32K, compared with 61.7 ms and 6,975.3 ms for re-prefill. The corresponding speedups are approximately 65%65\%0 and 65%65\%1. For the reverse 32B 65%65\%2 14B direction, the speedup ranges from approximately 65%65\%3 to 65%65\%4. Figure 8

Figure 8: Mapper application remains comparatively inexpensive as sequence length grows, while target re-prefill scales more steeply at every evaluated length.

The asymmetry between directions is operationally relevant. Small-to-large transfer is useful for quality escalation, while large-to-small transfer reduces serving cost after a high-capability model has processed a difficult turn. The mapper’s execution is dominated by per-layer batched matrix multiplications and does not require running the target transformer body over the prefix. At short sequences, fixed dispatch and cache-transfer overheads dominate; at long sequences, the mapper’s linear growth is much smaller than the target’s re-prefill cost.

There are deployment tradeoffs. A directional mapper is required for each ordered model pair, so a fleet of 65%65\%5 models can require up to 65%65\%6 artifacts. The reported mapper sizes of 4--12 GB are manageable in host memory or storage but create nontrivial artifact-management and loading requirements. The study also does not measure complete end-to-end routing overhead, cache movement across processes, network transfer, or concurrency effects. Its latency results therefore establish a compute advantage rather than a complete serving-cost model.

Limitations and future research

The empirical scope is deliberately constrained. All six primary pairs are within-family and matched-KV; mismatched head counts and per-head dimensions are not tested. The models use dense full attention, excluding sliding-window, hybrid attention, and attention-recurrent architectures that carry additional state. Cross-family transfer, such as Qwen3 65%65\%7 Llama 3.1, is also unexamined.

Calibration uses only FineWeb-Edu. The domain sweep indicates that Wikipedia produces relatively small average degradation, whereas CodeAlpaca can reduce HellaSwag by 65%65\%8 percentage points and produces more variable benchmark effects. These findings suggest that calibration distribution and register matter, but they do not characterize specialized domains such as medicine, law, code generation, or long-horizon tool use.

The selection of 65%65\%9 is partly optimized on benchmarks also used for reporting, although leave-one-benchmark-out analyses limit the measured effect to at most T\mathcal{T}00 percentage points. More important is the absence of a reliable pre-fit transferability predictor. Attention-output cosine is a useful post-fit diagnostic, but it cannot screen a pair before calibration and mapper construction. Future work should identify architecture- and training-derived indicators of representational compatibility, possibly using activation statistics, inter-model CKA, tokenizer-conditioned probes, or low-cost attention-output estimates.

The nonlinear results point toward a broader design space. Mappers could be trained directly against attention-output fidelity, target logit preservation, or downstream task loss rather than per-channel MSE. Conditional or low-rank adapters could reduce the 1--3 billion parameter footprint. Cross-layer sparsity, shared bases across heads, and low-rank factorization could make pairwise artifacts cheaper to store. For large model fleets, a shared latent cache space might replace the quadratic collection of directional pairwise maps, although such a design would need to preserve target-specific attention geometry.

Conclusion

The paper demonstrates that cross-model KV cache transfer is feasible within several LLM families without gradient-based mapper training. Its closed-form per-head ridge mapper exploits cross-layer linear structure, strips and reapplies RoPE to isolate content representations, and uses a small calibration corpus to construct target-format caches. Across six matched-KV pairs, four retain T\mathcal{T}01--T\mathcal{T}02 of standalone accuracy and achieve T\mathcal{T}03--T\mathcal{T}04 lower prefill latency than re-prefill.

The results also establish clear boundaries. Matched KV geometry does not guarantee successful transfer, and average cache reconstruction metrics are insufficient to predict downstream behavior. The location of residual error relative to attention-sensitive subspaces is more informative, with attention-output cosine correlating with HellaSwag retention at T\mathcal{T}05. Nonlinear mappers recover up to T\mathcal{T}06 percentage points on difficult pairs, indicating that future systems should optimize attention-relevant fidelity rather than generic reconstruction error. The practical trajectory is therefore toward transferability diagnostics, attention-aligned mapping objectives, compact shared adapters, and evaluation across cross-family, long-context, heterogeneous, and recurrent serving architectures.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

Practical Applications

Immediate Applications

  • Reduce latency and cost in multi-model LLM serving (software infrastructure, cloud AI)
    • Potential workflow: prefill with a low-cost model → map its KV cache → continue generation with a larger model.
    • Products/tools: inference-server plugins, KV-cache conversion services, model-router integrations, and cache-aware schedulers.
    • Dependencies: source and target must currently have matched KV-head counts and per-head dimensions, share a tokenizer, and use compatible cache semantics. Pair-specific mapper weights must be fitted and stored, with reported storage of approximately 4–12 GB per pair.
  • Cost-quality cascading for production assistants (customer support, search, enterprise automation)
    • Potential workflow: confidence or policy-based routing → cross-model KV transformation → target-model decoding.
    • Evidence: four of six tested pairs retained 73–98% of standalone target accuracy across five benchmarks.
    • Dependencies: transfer quality is highly pair-dependent; the two weaker Ministral pairs retained only 42–44% average accuracy under ridge mapping. Production systems should maintain a fallback to normal re-prefill.
  • Mid-conversation model handoff in agentic sessions (AI agents, productivity software, customer service)
    • Potential workflow: maintain a canonical conversation and source KV cache → map the cache at handoff → continue decoding on the target.
    • Dependencies: error can accumulate over very long sessions, particularly in the large-to-small direction, where the reported drift grew by about 0.33 percentage points per turn in the tested setting. Periodic re-prefilling or checkpoint-based refreshes may be necessary.
  • Long-context serving optimization (document analysis, retrieval-augmented generation, coding assistants)
    • Potential products: long-document assistants, multi-stage RAG pipelines, and coding systems that analyze a repository with one model before generating with another.
    • Dependencies: the target’s supported context window and RoPE configuration must be respected. The mapper must strip source RoPE and reapply target RoPE correctly; omitting inference-time RoPE handling caused severe degradation on some tasks.
  • Energy and hardware utilization improvements for data centers (cloud infrastructure, sustainability)
    • Potential workflow: cache transfer between GPU-resident model workers or across service tiers, combined with prefix caching and request batching.
    • Dependencies: the reported gains are primarily prefill gains, not total end-to-end generation gains. Network transfer, KV-cache memory bandwidth, mapper storage, and GPU memory capacity may limit real-world savings.
  • Offline deployment screening and quality monitoring (MLOps, model evaluation)
    • Potential workflow: fit a candidate mapper → evaluate attention-output similarity on representative prompts → compare with downstream task retention → enable, restrict, or reject the pair.
    • Evidence: attention-output cosine correlated more strongly with HellaSwag retention than calibration-domain R2R^2 across the reported 12 directional evaluations.
    • Dependencies: cosine is a post-fit diagnostic and still requires representative evaluation data. The reported correlation is moderate, not sufficient as a standalone safety guarantee.
  • Low-training-cost adaptation of model-serving infrastructure (software engineering, academic prototypes)
    • Potential tools: an offline mapper compiler, automatic source-layer selector, and deployment-time cache conversion kernel.
    • Dependencies: fitting still required approximately 47–87 minutes on an 8×H100 node per pair, and calibration quality depends on domain. Code-domain calibration reduced HellaSwag performance relative to other tested domains.
  • Research and teaching tools for representation alignment (academia, ML education)
    • Potential studies: compare layer alignment across model scales, analyze key versus value predictability, and evaluate how training data or post-training recipes affect transfer.
    • Dependencies: conclusions should not be generalized beyond the tested dense, within-family, matched-KV models without additional experiments.

Long-Term Applications

  • General-purpose model-switching middleware across architectures (AI platforms, enterprise software)
    • Potential product: a universal “KV cache interoperability” layer for model routers and serving frameworks.
    • Dependencies: the paper does not validate mismatched-KV pairs. Head conversion, tokenizer alignment, normalization differences, and incompatible positional encodings may require learned adapters or attention-aware transformations.
  • Cross-family cache transfer (LLM ecosystems, model portability)
    • Potential workflow: family-pair compatibility testing → calibration and attention-output validation → selective deployment by task.
    • Dependencies: differences in training data, fine-tuning, normalization, tokenizer, RoPE settings, and architectural conventions may make cross-family transfer substantially harder than within-family transfer.
  • Attention-aligned nonlinear cache translators (advanced inference research)
    • Potential products: adaptive mappers selected per pair or per workload, with a cheap linear mapper for easy pairs and a nonlinear mapper for difficult ones.
    • Dependencies: nonlinear models require gradient-based training, additional compute, more parameters, and stronger safeguards against overfitting. Improved HellaSwag retention does not guarantee gains on reasoning, safety, factuality, or domain-specific tasks.
  • Adaptive transfer with periodic cache correction (long-running agents, robotics, industrial control)
    • Potential workflow: transfer cache → monitor drift → refresh selected layers or recent context → continue decoding.
    • Dependencies: reliable online drift metrics and efficient partial-refresh mechanisms are not established by the paper. In safety-critical robotics or industrial systems, approximate cache transfer would require formal validation and fail-safe behavior.
  • Multi-tier personal assistants and edge–cloud collaboration (mobile devices, consumer electronics, telecom)
    • Potential benefits: reduced uplink computation, faster cloud handoff, and lower cloud cost.
    • Dependencies: transmitting KV caches can expose sensitive information and may itself be bandwidth-intensive. Encryption, access control, cache eviction, and privacy-preserving calibration would be required. Hardware memory and model-family compatibility are also constraints.
  • Domain-specific assistants with specialized model cascades (healthcare, legal services, finance, education)
    • Potential workflow: domain detection → compatible specialized-model selection → KV transfer → domain-specific generation and verification.
    • Dependencies: the study’s calibration data is general-purpose and does not establish transfer quality in medicine, law, finance, or other high-stakes domains. Domain-specific validation, privacy controls, auditability, and human review would be essential.
  • Integration with speculative decoding, prefix caching, and cross-layer KV reuse (inference systems research)
    • Potential outcome: lower memory use and faster routing across several model tiers.
    • Dependencies: combined approximations may interact nonlinearly and amplify errors. Memory layout, cache versioning, batching, and consistency across optimization methods require system-level evaluation.
  • Transferability prediction before mapper fitting (automated model selection, policy and governance)
    • Potential workflow: pre-screen candidate pairs → fit mappers only for promising pairs → validate on representative workloads.
    • Dependencies: the paper shows that calibration R2R^2 alone is not a reliable cross-pair predictor, and no pre-fit predictor is yet demonstrated. Large, diverse model-pair datasets would be needed.
  • Hybrid attention–state transfer for recurrent or local-attention models (robotics, streaming speech, real-time systems)
    • Potential applications: real-time speech assistants, autonomous systems, interactive robotics, and low-latency industrial monitoring.
    • Dependencies: recurrent states are not equivalent to standard KV caches, and local-attention windows impose different positional and visibility constraints. New state-alignment methods and stability guarantees would be required.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 20 tweets with 92 likes about this paper.