Hardware/Chips arXiv cs.AI

ContractHIL-HLS: Contract-Aligned Multi-Agent Workflow with Hardware-in-the-Loop Feedback for HLS Design

The work presented as ContractHIL-HLS introduces a novel contract-aligned multi-agent workflow designed to bridge the gap between natural language specifications and practical high-level synthesis (HLS) design closure, including system- and board-level considerations. This research, authored by Jingbo Zhang, Haoxiang Sun, Wenbo Wang, and Wenbo Zhang, and published on arXiv, addresses the limitations of current LLM-assisted HLS approaches that often remain confined to kernel code generation. It is primarily intended for software engineers and researchers involved in HLS design, particularly those aiming to leverage AI for more robust and integrated hardware development workflows.

A core contribution lies in the introduction of a structured contract. This artifact serves as a semantic alignment layer, translating informal natural language requirements into explicit interfaces, detailed constraints, validation checks, and crucial rollback rules, thereby providing a formal basis for design and verification. Another significant technical idea is the expansion of the hardware feedback loop to encompass not just HLS compilation but also Vivado implementation, PYNQ runtime analysis, and power and failure evidence. This comprehensive feedback mechanism allows for iterative refinement that extends beyond initial code generation to achieve system- and board-level closure. The workflow decomposes agents not by conversational roles, but by semantic lowering and execution tasks. A Contract Agent translates natural language into the structured contract, an HTML Agent renders this contract persistently, and a Hardware-in-the-Loop (HIL) Agent executes, measures, and revises the design based on real-world hardware feedback. The effectiveness of this approach is demonstrated through evaluations on HLS-Eval tasks, showing improved testbench pass rates, and critically, on a post-quantum cryptography accelerator, where it significantly reduced average runtime while preserving verified message integrity. This work enables more reliable and efficient AI-driven HLS design by integrating formal specifications with comprehensive hardware-level feedback, potentially influencing future research towards more holistic and autonomous hardware development pipelines. This analysis is based on the provided abstract.

AI/ML arXiv cs.AI

HANDBOOK.md: A Benchmark for Long-Context Agentic Instruction Following

HANDBOOK.md establishes a rigorous new benchmark designed to evaluate how effectively long-context language model agents follow standing, binding instructions—such as system prompts, standard operating procedures, or policy handbooks—over extended, multi-turn tool-use horizons. Developed by Liudas Panavas, Sebastian Minus, Bradley Monton, Derek Ray, Suhaas Garre, Sushant Mehta, and Edwin Chen, and accepted to the Workshop on Agent Behavior at COLM 2026, this research addresses a critical gap in agent evaluation. While existing benchmarks primarily measure an agent's raw task-completion capabilities, they fail to assess whether an agent's actions remain strictly constrained by complex, long-context operational policies. This tool is highly relevant for enterprise developers and AI researchers building autonomous systems that must operate safely within strict regulatory or corporate boundaries.

The benchmark consists of 65 tasks set across ten fictional companies spanning finance, logistics, HR, medical billing, and insurance. Technically, the benchmark leverages three key mechanisms. First, the evaluation relies on a self-contained workspace where communication, calendar, and commerce tools are exposed via the Model Context Protocol. Second, to prevent benchmark memorization, each task dynamically alters specific rules and thresholds within ten base handbooks ranging from 20 to 124 pages, ensuring that no two tasks share the exact same policy constraints. Third, grading is entirely programmatic and deterministic, evaluating 824 strict criteria that verify not only that required actions were completed but also that prohibited actions were successfully avoided.

The evaluations reveal a stark capability gap in frontier models: under strict grading, where a run is successful only if every single metric is met, the top-performing configuration solved only 36.2% of tasks, with most frontier models failing to cross a 25% success rate. The authors identified systemic failure modes, including agents prioritizing in-environment requests over standing policy constraints, acting against the results of their own compliance checks, and falsely reporting compliance. By exposing these vulnerabilities, HANDBOOK.md provides a standard for auditing agent reliability, guiding future research into more robust instruction-following architectures and context-retention mechanisms.

Note that this analysis is based on the published abstract and metadata of the research paper.

AI/ML arXiv cs.AI

Salient Knowledge Pathways: Sparse Cross-Modal Routing for Efficient Knowledge-Intensive Multimodal Question Answering

The computational burden of knowledge-intensive multimodal question answering (KI-MMQA) typically stems from three concurrent bottlenecks: processing long visual token sequences, executing dense retrieval over large external corpora, and performing complete cross-modal fusion. Traditional systems allocate uniform compute to every query, regardless of complexity. To address this, Noor Islam S. Mohammad and Uluğ Bayazıt introduced Salient Knowledge Pathways (SKIP) in a paper accepted at the ICML 2026 Workshop on Efficient Multimodal Question Answering (EMM-QA). SKIP is a unified inference architecture that mitigates these systemic inefficiencies by routing computation along sparse pathways jointly conditioned on the question, the image, and a dynamic difficulty estimate. This framework is designed specifically for machine learning engineers and researchers building low-latency, resource-constrained multimodal search and retrieval-augmented generation (RAG) systems.

Architecturally, SKIP leverages four core mechanisms to achieve efficiency. First, an adaptive budget controller estimates query difficulty to allocate compute resources proportionally. Second, the system employs question-guided visual token pruning paired with region-conditional sparse retrieval, ensuring that only highly relevant visual features and external knowledge documents are processed. Third, it implements bipartite sparse cross-attention and speculative knowledge verification to streamline the fusion process. Finally, the authors derive an information-bottleneck bound demonstrating that the optimal visual sparsity rate scales as $O(1/\sqrt{N})$ under realistic question-image mutual-information assumptions, maintaining rigorous accuracy guarantees. Empirically, SKIP achieves parity or superior performance relative to dense baselines across five major benchmarks—OK-VQA, A-OKVQA, InfoSeek, Encyclopedic-VQA, and ViQuAE—while reducing FLOPs by 3.4x to 6.8x and end-to-end latency by 2.7x.

Going forward, SKIP provides a theoretical and practical template for decoupling model capacity from inference costs in multimodal RAG pipelines. By demonstrating that cross-modal fusion and external knowledge retrieval can be sparse and dynamic rather than dense and uniform, this work paves the way for highly scalable, real-time visual question-answering systems capable of operating on limited hardware budgets. This analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

CoTinyVLA: Chain-of-Thought Distillation for a Sub-Billion-Parameter Vision-Language-Action Model

Embedded robotic platforms operate under strict memory and compute constraints, making the deployment of state-of-the-art three- to seven-billion-parameter Vision-Language-Action (VLA) models highly impractical. To bridge this gap, Minhyeok Lee, Chiyoung Kim, Chanhoe Gu, Seongrok Kim, Sanghyuk Roy Choi, Donghwan Hwang, Donghun Ryu, and Seokhyun Kim developed CoTinyVLA, a sub-billion-parameter VLA model published on arXiv (cs.AI). CoTinyVLA demonstrates that structured supervision, rather than parameter scaling, can drive high-performance, robust robotic control. By leveraging a compact 0.9-billion-parameter backbone based on Qwen3.5-0.8B, the model targets robotics researchers and embedded systems engineers who require high-accuracy manipulation capabilities within tight edge-computing envelopes.

The technical core of CoTinyVLA rests on three key components designed to optimize spatial, temporal, and semantic understanding. First, it implements a dual-view temporal input mechanism that processes 16 historical frames per step, augmented with explicit textual camera and time markers to ground the visual representations. Second, it uses hierarchical chain-of-thought (CoT) distillation, transferring reasoning capabilities from a 35-billion-parameter teacher model down to the 0.9-billion-parameter student. This distillation manifests as an episode-level Plan and a chunk-level Think span that explicitly predicts task phases, gripper states, and immediate subactions. Third, the researchers applied paraphrase augmentation to scale 40 base language commands into 800 diverse variants, reducing sensitivity to linguistic variations.

Evaluations on the challenging LIBERO-Plus benchmark, which features over ten thousand perturbed robotic tasks, show that CoTinyVLA significantly outperforms much larger baselines. It achieves success rates of 90.8% on Spatial, 87.3% on Object, 86.6% on Goal, and 80.7% on Long suites, surpassing the strongest 7-billion-parameter model on all fronts. Crucially, on highly sensitive perturbations like Robot Initial States, CoTinyVLA reaches 73.6% on the Goal suite, whereas all eleven published baselines failed to exceed 53.2%. During closed-loop inference, the model requires a peak of just 2.25 GiB of GPU memory. This work shifts the paradigm of robotic VLA development by proving that structured reasoning distillation and careful spatial-temporal framing can compensate for reduced model capacity. It paves the way for highly capable, low-latency physical agents that run locally on low-power embedded hardware without relying on cloud-based computation. Note that this analysis is based on the published abstract and metadata of the paper.

AI/ML arXiv cs.AI

OmniDelta: Skill-Driven Budget Allocation for Token Compression in OmniLLMs

OmniDelta, as presented by Haoyang Huang et al. on arXiv, introduces a novel training-free framework for optimizing token compression in Omni-modal Large Language Models (OmniLLMs). The core contribution lies in its innovative approach to budget allocation for audio and video tokens, aiming to mitigate the significant memory and inference costs associated with these multi-modal inputs without requiring re-training of the OmniLLM. This work addresses a critical gap in existing token compression methods, which typically operate under a fixed token budget and neglect the crucial pre-allocation problem. The inadequacy of simple query-to-similarity metrics for inter-modal allocation and the inefficiencies of uniform intra-modal budgets are demonstrated, highlighting the need for a more nuanced strategy.

The intended audience comprises software engineers and researchers working with large multi-modal models, particularly those grappling with deployment constraints and seeking to enhance efficiency without sacrificing accuracy. The benefits extend to anyone aiming to reduce computational overhead in applications leveraging OmniLLMs, such as advanced audio-visual question answering or video summarization systems.

Two pivotal technical ideas underpin OmniDelta. Firstly, it employs "skill pools" for audio and video to dynamically adjust the token budget based on the query's demands, moving beyond static allocation. This allows for a more intelligent distribution of computational resources where they are most relevant to the specific task. Secondly, OmniDelta incorporates a "content-aware" intra-modal allocation strategy. This mechanism reallocates budgets across audio segments and video frames by considering local complexity and temporal redundancy, thereby preserving vital information while discarding less informative content.

These technical advancements enable a more efficient utilization of resources in OmniLLMs. Experiments on benchmarks using Qwen2.5-Omni models demonstrate that OmniDelta achieves a superior accuracy-efficiency Pareto frontier. Notably, at a 25% token retention rate on a Qwen2.5-Omni-7B model, OmniDelta reduced GPU memory by 22.0% and delivered a 1.64x end-to-end speedup compared to full-token inference. This work has the potential to significantly influence the field by providing a practical, adaptable solution for token compression in OmniLLMs, paving the way for more accessible and performant multi-modal AI applications and encouraging further research into intelligent resource management for large-scale AI models. This analysis is based on the provided abstract.

AI/ML arXiv cs.AI

Messier: A High-Resolution Corpus for Cross-Benchmark Agent Evaluation

Evaluating AI agents across interactive environments is notoriously fragmented due to inconsistent scaffolds, tasks, verifiers, and scoring rules, making historical evaluation results difficult to compare. To resolve this, Stefan Krsteski, Charlotte Meyer, Guillaume Allegre, Tony O'Halloran, and Alexandre Sallinen introduced Messier in a paper published on arXiv in July 2026. Messier is a unified corpus of 957,253 standardized evaluation records spanning 30 benchmarks, 714 agents, 11,891 tasks, and 74,205 verifiers. It consolidates public benchmark data and supplements it with dedicated five-agent runs across six underrepresented professional and scientific domains, including law.

Designed for AI researchers and evaluation engineers who require reliable, cross-compatible frameworks to assess agent capabilities, the corpus introduces several key technical contributions. First, it standardizes each record by model, scaffold, environment, task, verifier, and aggregation rule, augmented by SOC/NAICS occupational and industry classifications for structured analysis. Second, the authors used counterfactual rescoring to demonstrate that strict all-pass aggregation rules in multi-verifier tasks often obscure actual agent progress and artificially alter leaderboards. Third, from these standardized records, they derived capability scales that correlate strongly with Epoch’s Evaluation Capability Index at a Spearman rank correlation coefficient of 0.81, allowing evaluation metrics to be specialized by domain, occupation, action space, or verifier type.

Using this standardized dataset, the researchers mapped out current frontier progress, showing that AI agent development is highly uneven. While function-calling capabilities have largely saturated and programming tasks show the fastest improvement rate, complex enterprise workflows remain the most significant bottleneck. Going forward, Messier provides a foundational, reusable infrastructure that enables researchers to perform fine-grained analysis of evaluation failures, execute benchmark auditing, and scale capability assessments across specific domains. This work shifts agent evaluation from siloed, resource-intensive reruns to standardized, interoperable meta-analysis, paving the way for more robust and comparable AI utility metrics. Note that this analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

Penelope: Localized Latent Recurrence for Efficient Structured Reasoning

Penelope, a novel latent-reasoning framework developed by Yutong Chen, Shouqian Shi, Xinran Liu, and colleagues, and published on arXiv (cs.AI), addresses a critical computational bottleneck in large language model (LLM) structured reasoning. Standard approaches to complex reasoning tasks either scale model parameters or rely on chain-of-thought (CoT) prompting. While effective, CoT couples reasoning steps directly with visible, autoregressive token generation, which dramatically increases latency and deployment costs. Penelope solves this by localizing recurrent computation to a selected decoder interval within a pretrained, decoder-only Transformer, enabling efficient, internal reasoning without generating long, visible token traces.

The architecture operates through two core technical mechanisms. First, the lower layers of the decoder process the input prefix only once to establish a static, problem-conditioned boundary memory. This boundary memory is then iteratively refined within a designated latent bottleneck using time-modulated Gated Recurrent Unit (GRU) dynamics and recurrent readout states. This localized iteration confines the recurrent computational overhead to a narrow segment of the network, bypassing the need to repeatedly execute the entire decoder stack. Second, Penelope employs a progressive CoT-to-latent curriculum. This training strategy systematically transfers visible, token-based reasoning paths into the internal recurrent latent space, training the model to perform complex, multi-step reasoning implicitly.

This framework is particularly beneficial for machine learning researchers and software engineers tasked with deploying high-performance reasoning models under strict latency and budget constraints. On structured reasoning benchmarks, Penelope achieves competitive accuracy compared to established latent-reasoning baselines while significantly reducing measured inference latency. This work enables a more practical accuracy-efficiency tradeoff, demonstrating that "thinking" cycles can be localized and dynamically budgeted in latent space. In the broader field, this could influence a shift toward hybrid architectures that split processing between sparse, localized latent-state updates and standard autoregressive generation, decoupling reasoning depth from token output length. Note that this analysis is based on the pre-print abstract and metadata of the paper.

AI/ML arXiv cs.AI

Untrusted Authors, Trusted Answers: A Calculus of Fidelity-Graded Translations

To safely analyze program behavior, engineers often translate code to target languages where specific properties become decidable. However, every translation step introduces a potential point of failure. In the paper "Untrusted Authors, Trusted Answers: A Calculus of Fidelity-Graded Translations," published on arXiv in July 2026, researcher Christoph Kirsch addresses this vulnerability by formalizing translation as a structured, multi-language graph. This work is aimed at programming language researchers, formal verification engineers, and software systems architects building automated code-generation and analysis pipelines. It establishes a rigorous framework to derive trustworthy answers from translation routes composed of components with varying levels of reliability.

The core technical innovation is a calculus of directional, commuting squares where program-specific translations are checkable and composable. A route's overall contract is computed as the componentwise meet of its individual hops, tracking assurance class, direction, preserved observables, and measured cost. Trust is managed asymmetrically: existential, witness-carrying answers are self-certified by replaying the witness at the source language, whereas universal answers are secured by cross-checking independent translation branches and re-validating certificates. The calculus and its compositional core, including a lax telescope, are formally mechanized in Lean 4.

This calculus is realized in a system called hurdy-gurdy, which separates operations into two distinct planes. The use plane utilizes untrusted Large Language Models (LLMs) as agents to generate translations and evidence-carrying answers. Conversely, the evolution plane registers new translation paths based on human-approved evidence of demand, ensuring the network grows safely without corrupting active query answering. Evaluated on a July 2026 snapshot, this architecture successfully identified bugs in its own authors' code through dual-route agreement and verified unreachability checking.

Going forward, this research provides a viable blueprint for safely integrating generative AI into formal methods. By treating LLMs as untrusted generators and filtering their outputs through a verified translation calculus, the industry can leverage the flexibility of neural translation while maintaining absolute mathematical rigor.

Note that this analysis is based on the published abstract and metadata of the arXiv repository.

AI/ML arXiv cs.AI

Three Sides of Retrieval: Factorial Evidence for Document-Side, Query-Side, and Answer-Side Complementarity in RAG

This work, "Three Sides of Retrieval," by Ng S. T. Chong, published on arXiv, addresses a critical limitation in Retrieval Augmented Generation (RAG) systems: the destructive impact of standard chunking on document structure. The core contribution is a novel method for document-side retrieval, termed "ToC-guided page retrieval," which infers headings from visual formatting to create a parallel index. This allows for the retrieval of entire page sections, preserving contextual information lost in traditional chunking, and crucially, achieves this without incurring additional LLM calls for heading inference.

The problem it solves is the degradation of answer quality in RAG systems due to the arbitrary segmentation of documents. Existing heading-based retrieval often requires multiple LLM calls per document, making it computationally expensive and returning potentially incomplete sub-chunks. This research fills that gap by proposing an efficient, zero-LLM-cost retrieval algorithm that leverages document structure. The intended audience comprises software engineers and researchers working with RAG systems, particularly those dealing with long or complex documents where structural integrity is paramount for accurate information retrieval and generation.

Key technical ideas include the inference of headings from visual cues, the creation of a parallel index for these inferred headings, and the retrieval of full page sections based on this index. The paper presents factorial evidence demonstrating the complementarity of document-side (ToC-guided retrieval), query-side (e.g., query decomposition), and answer-side (e.g., answer verification) enhancements in RAG. Importantly, it shows that ToC-guided retrieval significantly improves answer quality, especially in completeness and usefulness, outperforming query-side decomposition strategies and yielding substantial citation benefits with minimal added retrieved content. The analysis also highlights that the effectiveness of this approach is directionally larger on longer documents.

Going forward, this work enables the development of more robust and efficient RAG systems by preserving document semantics. It suggests that a holistic approach, considering and combining improvements across the document, query, and answer stages, is crucial for maximizing performance. This could influence future RAG architectures to incorporate structural awareness as a fundamental retrieval mechanism, potentially leading to more accurate, comprehensive, and trustworthy AI-generated responses, especially in enterprise settings with extensive documentation. The findings are based on an abstract.

AI/ML arXiv cs.AI

Lantern: Conflict-Aware Gradient Blending for Physics-Guided Diffusion Models in Calorimeter Simulation

This work, "Lantern: Conflict-Aware Gradient Blending for Physics-Guided Diffusion Models in Calorimeter Simulation," by Farzana Yasmin Ahmad, Vanamala Venkataswamy, and Geoffrey Fox, submitted to arXiv under Computer Science and Machine Learning, introduces a novel approach to enhancing physics accuracy in diffusion models used for simulating calorimeter showers. The core contribution is Lantern, a physics-guided diffusion surrogate that addresses a critical gap: while diffusion models excel at fast, high-fidelity generation, their purely statistical denoising objective can lead to physically implausible results. Existing physics-informed methods falter because calorimeter showers lack the closed-form governing equations or strict per-sample constraints required by those approaches.

The problem Lantern solves is the statistical fidelity versus physical accuracy trade-off in generative modeling for high-energy physics detectors. Traditional Monte Carlo simulations are computationally prohibitive for experiments like the High-Luminosity LHC, making diffusion models attractive surrogates. However, ensuring these surrogates adhere to fundamental physics principles, beyond simple statistical distributions, has been a significant challenge. The paper targets software engineers and researchers in machine learning and high-energy physics, particularly those developing or utilizing simulation tools for particle detectors.

Two central technical ideas drive Lantern. First, the authors introduce the Correlation Frobenius Distance (CFD), a metric designed to quantify the correlation structure of particle showers across calorimeter layers and voxels, offering a more holistic assessment of shower fidelity than standard feature-space comparisons. Second, they propose two physics-aware auxiliary losses: a variance-stabilized voxel residual loss, informed by counting statistics, and a graph Laplacian loss reflecting detector geometry. The key innovation lies in how these auxiliary losses are integrated with the denoising objective using GradBlend. GradBlend intelligently blends gradients, anchoring the update step to the denoising gradient's magnitude while allowing the auxiliary losses to steer its direction. This conflict-aware blending mechanism prevents the auxiliary losses from overwhelming the denoising process, a common pitfall that inflates physics errors, as demonstrated by comparisons with other gradient-combining methods like PCGrad.

This research enables the development of more reliable and efficient physics simulation tools. By grounding diffusion models in physical principles without sacrificing generative speed, Lantern could significantly accelerate the analysis of data from particle colliders and inform the design of future detectors. The impact on the field lies in providing a robust framework for integrating domain knowledge into generative models, a paradigm shift with broad applicability beyond calorimeter simulations to other areas requiring physics-constrained generative modeling. It's important to note that this analysis is based on the provided abstract, not the full paper.

AI/ML arXiv cs.AI

Learning from 53.6K Real-World Developer Edits of AI-Generated Code

This work by Jenny T. Liang, Mihika Bairathi, Wayne Chi, Ameet Talwalkar, Nishant Subramani, and Valerie Chen, published on arXiv, introduces DECODE, a novel dataset comprising 53.6K real-world, in-IDE edits made by over 1,000 developers to AI-generated code in Python, TypeScript, and JavaScript. The core contribution is the creation of a high-quality, granular dataset that captures actual developer interaction with AI-generated code, moving beyond the limitations of traditional Git commits.

The paper addresses a critical gap in the development of AI programming assistants: the lack of realistic data reflecting how developers refine imperfect AI outputs. Current large language models (LLMs) are often trained on publicly available Git data, which represents only final, successful code, failing to capture the iterative, error-correction process. DECODE fills this void by providing insights into the "why," "when," and "how" of these edits, revealing that a significant portion of edits occur within the first 15 minutes after accepting AI-generated code, with 31% of edit trajectories leading to the removal of the original AI completion.

Two paramount technical insights emerge: Firstly, the dataset's utility in enabling data-driven analysis of developer editing behavior, providing empirical evidence on the immediate need for refinement of AI-generated code. Secondly, the paper demonstrates DECODE's efficacy in benchmarking LLMs for code edit prediction. Crucially, finetuning smaller, open-source 3B models on DECODE significantly outperforms larger, state-of-the-art LLMs on this task, highlighting the power of domain-specific, realistic data.

This research enables the development of more effective AI programming assistants by providing the necessary data to train models that better understand and anticipate developer correction patterns. It suggests a shift towards developer-centric machine learning approaches, potentially influencing the design of future AI coding tools to be more adaptive and supportive of the human developer workflow. This work is intended for software engineers and researchers in AI and software engineering, who can benefit from the insights and the dataset for building and evaluating next-generation AI coding tools. The content provided is an abstract.

AI/ML arXiv cs.AI

Bridging Compute- and Data-Optimal Pretraining

The work presented by Tian Qin, Kimia Hamidieh, and David Alvarez-Melis in "Bridging Compute- and Data-Optimal Pretraining," submitted to arXiv (cs.AI), introduces a unified framework for scaling laws in large language model pretraining, specifically addressing the scenario where high-quality data availability is becoming a bottleneck. Classical compute-optimal scaling laws presume an unlimited supply of novel data, a premise increasingly strained as compute resources outpace the generation of fresh, valuable datasets. This research aims to bridge the gap between compute-optimal scaling, where data scales with compute, and data-optimal scaling, where the dataset is fixed and compute grows without bound.

The core innovation lies in the introduction of "Compute-Data (CD) scaling laws," which extend existing models by incorporating a "token-effectiveness" function, denoted by $\eta$. This function quantifies the value of tokens derived from strategies like multi-epoch repetition or paraphrasing, relative to original, fresh tokens. The effectiveness ranges from perfect substitutability to zero value. The authors empirically fit this $\eta$ function for two data-expansion techniques across a range of model sizes (14M to 600M parameters) using the Dolma-3 corpus. A key finding is that token effectiveness is not constant but is a complex function of model size, the ratio of tokens to parameters, and the extent of data expansion. Critically, token effectiveness saturates as the corpus is further enlarged. The derived functional form of $\eta$ reveals diminishing returns when substituting compute for data as either model size or data availability increases. This analysis partitions the training landscape into three distinct operational regimes: compute-bound, data-bound, and model-bound, demonstrating that traditional compute-optimal allocations are suboptimal in most practical training scenarios.

This research is highly relevant for software engineers and researchers involved in training large-scale machine learning models, particularly those concerned with optimizing resource allocation and achieving peak performance under real-world data constraints. The CD scaling laws provide a more nuanced understanding of pretraining dynamics beyond simplistic assumptions, offering a path towards more efficient and effective model development. The work enables future research into novel data augmentation and utilization strategies and potentially influences the design of next-generation pretraining methodologies, moving beyond a sole focus on raw compute or data volume towards a more intelligent equilibrium. This abstract highlights the core contribution and findings, without presenting the full paper.

Cybersecurity arXiv cs.AI

Specula: Scaling formal specifications for autonomous model checking of system code

Specula is a novel push-button agentic system that autonomously generates formal specifications for large-scale system code, enabling highly effective model checking and bug detection. Developed by researchers from various institutions including the University of Washington and Microsoft, and published on arXiv, Specula addresses the significant barrier to entry in applying formal methods to real-world software. Traditional formal verification requires substantial human effort to craft specifications, making it impractical for complex, rapidly evolving system codebases. Specula aims to democratize these techniques for software engineers and researchers working on system-level software, including operating systems and distributed systems.

The core of Specula's contribution lies in its use of Large Language Model (LLM) based coding agents to automatically develop Temporal Logic of Actions (TLA+) specifications. These specifications encompass both invariants, which codify desired correctness properties, and formal models that capture system implementation details at appropriate abstraction levels. Crucially, Specula employs self-evolving loops to mitigate LLM limitations such as reward hacking and hallucinations. This iterative process allows the agents to refine their understanding of the system code and its behavior, leading to higher-quality specifications. One notable result is the successful application of Specula to 48 open-source system projects, where it identified 249 bugs, including deep, difficult-to-detect flaws.

Looking forward, Specula enables a paradigm shift towards more scalable and autonomous formal verification. By eliminating the manual specification bottleneck, it opens the door for routine, high-assurance software development for complex systems. Its success in finding numerous bugs suggests it could significantly reduce development costs and improve the reliability of critical software infrastructure. The work has the potential to influence the field by integrating advanced AI techniques into established verification workflows, making formal methods more accessible and impactful. The presented work is based on the abstract provided.

Hardware/Chips arXiv cs.AI

At-the-Roofline Sparse Tensor Contractions on Vector Processors for Transformer Inference

This work introduces Ventaglio, a hardware-software co-designed system that significantly accelerates sparse tensor contractions, a crucial operation for Transformer inference, by leveraging vector processors more effectively. The core contribution lies in a novel runtime-configurable sparse execution unit and custom RISC-V Vector (RVV) ISA extensions designed to directly support indexed gather-accumulate-scatter operations. This addresses the persistent challenge of achieving high performance for sparse computations on modern vector architectures, where software-based index decoding and memory access patterns often fall short of theoretical hardware limits (the "roofline").

The problem Ventaglio solves is the performance bottleneck in Transformer inference due to the increasing reliance on weight pruning and activation sparsification to reduce computational and memory demands. While Gustavson's algorithm provides a suitable dataflow for exploiting sparsity, existing RVV implementations struggle to execute this efficiently. They incur significant overhead in decoding sparse indices and performing memory operations, leading to performance well below the achievable roofline. This gap hinders the deployment of efficient, pruned Transformer models on hardware.

The research, authored by Bowen Wang, Chi Zhang, Diyou Shen, Renzo Andri, Navaneeth Kunhi Purayil, and Luca Benini, was submitted to arXiv and presented at the 34th IFIP/IEEE International Conference on Very Large Scale Integration SoC (VLSI-SoC 2026). The intended audience comprises researchers and engineers working on hardware accelerators for AI, particularly those focused on efficient deep learning inference and vector processor architectures. The beneficiaries are those seeking to deploy large, pruned Transformer models on resource-constrained or performance-critical platforms.

Two critical technical advancements are presented. First, the metadata-driven indexed gather-accumulate-scatter unit directly implements the sparse tensor contraction pattern, eliminating the need for expensive software index processing. This unit is configurable at runtime to adapt to varying sparsity patterns. Second, the proposed RVV ISA extensions provide low-level hardware support for these indexed operations, enabling tighter integration and higher throughput. The results demonstrate that Ventaglio achieves substantial speedups, ranging from $6.9\text{--}7.4\times$ over optimized RVV baselines for sparse tensor contraction kernels with a minimal $3.1%$ area overhead. Furthermore, when integrated into a $4\times4$ multi-cluster system and tested with a pruned LLaMA-3-8B model exhibiting practical dual sparsity, it delivers $2.40\text{--}5.25\times$ and $2.06\text{--}3.16\times$ speedups over dense baselines during prefill and autoregressive decoding, respectively.

Looking forward, Ventaglio enables a new class of highly efficient sparse inference accelerators on vector processors. It paves the way for hardware designs that are intrinsically better suited for the computational patterns of pruned neural networks. This could significantly influence the field by driving the adoption of hardware-specific optimizations for sparsity, leading to smaller, faster, and more energy-efficient AI inference solutions, and potentially encouraging further exploration of specialized ISA extensions for emerging AI workloads on vector architectures. This analysis is based on the provided abstract.