公开论文雷达

公开 arXiv 研究简报 · 2026-08-20T00:56:06.739046+00:00

先看结论和关键数字,再决定要不要读原文。候选只在首次出现时展示;旧候选若后来通过深读门槛,仍会进入重点。

别信裸输出:两篇都给模型改动加验证闭环

两张卡都在讲同一件事:模型(记忆组件、代码变换)改完不能直接采纳,要外挂一层可重放的验证与纠错闭环。D²ACCI 关注把故障定位到管道哪一段并要统计证据,T-LLM 关注用编译器加形式化工具证明变换真的没改错。先读方法论,再读落地实例。

推荐阅读顺序

  1. 2608.17756:先建立总框架:为什么不能只看聚合分、怎么用阶段追踪加配对统计把改动门控起来。
  2. 2608.14953:再看具体落地:把上面的闭环思想套到代码优化上,用三层验证把正确性钉死。
共性方法
两者都拒绝直接信任模型输出,改为在模型外面套一个闭环:产出→验证/门控→失败反馈→重做或回滚,并留下可重放的证据制品。都用公开基准(三个记忆基准 / PolyBench/C)验证,都把「一次生成」换成「生成加受控检查」。
关键分歧
D²ACCI 解决的是归因与回归:分数掉了坏在摄入检索过滤生成哪一段,靠配对统计和切片非回归判断能否上线。T-LLM 解决的是功能正确性:变换到底等不等价,靠编译器加 Alive2、CBMC 形式化证明。一个管「有没有变好且没暗回归」,一个管「有没有改错」。
选择准则
改的是记忆或评测类组件、怕聚合分掩盖切片回归,用 D²ACCI 的阶段追踪加统计门控;改的是代码变换、必须保证语义等价,用 T-LLM 的语法符号语义三层验证加迭代纠错。

重点深读(2 / 2 篇)

形式化与程序验证(0 篇)

本轮没有通过深读证据门的重点论文。

软件工程与仓库智能(0 篇)

本轮没有通过深读证据门的重点论文。

代码质量与优化(1 篇)

代码质量与优化 7/30

T-LLM Compiler: Trusted LLM-based Code Optimization and Verification Framework

LLM做代码优化必须闭环验证:T-LLM在PolyBench/C上达到83.3%正确…:如果你用LLM改代码提速,最大的风险是它改完自己没法证明改对了。T-LLM编译器把Qwen2.5-32B生成的变换交给传统编译器、Alive2、CBMC做三层验证,失败就把诊断反馈给LLM重写,最终在PolyBench/C上做到83.3%优化准确率、平均26.7%加速。

两句看懂

LLM做代码变换时无法独立验证正确性,T-LLM把Qwen2.5-32B与传统编译器、Alive2、CBMC组合成语法→符号→语义三层迭代验证闭环。在PolyBench/C上,该框架达到83.3%优化准确率,变换代码平均加速26.7%。

核心判断

LLM代码变换加上语法、符号、语义三层分层验证和迭代纠错后,优化准确率达83.3%,变换代码平均加速26.7%(PolyBench/C基准,相对标准基线)。

关键要点

1. 旧假设:LLM生成优化变换即可用,但现有路径(含LLVM-IR直接变换)没有独立验证环节,论文明确指出这些路径未能提升变换成功率,正确性无保障。 2. 方法:Qwen2.5-32B-Instruct生成变换后,依次过编译器语法检查、Alive2符号验证、CBMC语义检查,任一步失败就把诊断反馈LLM重写;对照为同一PolyBench/C测试集和标准基线运行时间。 3. 结果:最高83.3%优化准确率、单核最高加速16.1%、平均加速26.7%;做法是把三层验证加迭代纠错接入你的LLM优化流程,别再用裸输出。

证据与结果

测试集是PolyBench/C,一个多面体计算核标准基准集,常用于评估编译器循环变换和并行化优化。指标有两个:优化准确率(通过全部三层验证的变换比例)和相对标准基线的运行时加速比。结果为最高83.3%准确率、单核最高加速16.1%、平均加速26.7%。摘录未提供分优化类型的细粒度失败率,也未提供不同迭代轮次的收敛曲线。

打开论文原文
它要解决什么
LLM生成代码变换后无法自己验证正确性,怎么搭一个自动化闭环,让优化既正确又有实际加速?
研究路径
Qwen2.5-32B-Instruct拿到代码和优化提示后生成变换版本。传统编译器先做语法检查,报错就返回给LLM。Alive2做符号等价验证,CBMC做语义正确性检查。任何一步失败,都把具体诊断信息反馈给LLM并触发重新生成,循环直到全部通过或达到迭代上限。
这对工程意味着什么
第一步行动:在LLM生成优化代码后立刻接入编译器+Alive2+CBMC分层验证,用失败诊断驱动迭代纠错。要避免的捷径:直接信任LLM输出的优化代码、跳过正确性验证。
证据定位
在PolyBench/C上,T-LLM最高达到83.3%代码优化准确率,单核最高加速16.1%,变换代码相对标准基线平均加速26.7%。论文同时指出,现有不含验证环节的LLM优化路径未能提升变换成功率。(筛选维度:可复核评测、软件工程方法)
适用边界
测试集只有PolyBench/C多面体计算核,代码域覆盖有限。摘录未报告分优化类型的细粒度成功率,也未说明LLM迭代上限和验证工具的具体覆盖范围。
方法与英文摘要

在PolyBench/C基准集上跑三步流程:第一步,Qwen2.5-32B-Instruct根据提示生成高层代码变换;第二步,传统编译器做语法检查;第三步,Alive2做符号等价验证,CBMC做语义正确性检查。任何一层失败,就把诊断信息反馈给LLM重新生成,循环直到全部通过或达到迭代上限。最后对比变换代码与标准基线的运行时间。

Recent advances in Large Language Models (LLMs) have opened opportunities to apply high-level code transformations to the field of code optimization, and it has since emerged as one of the most fundamental tasks for LLMs to perform; however, at present, LLMs struggle to apply wide-ranging code optimization tasks due to both the complexity of the code and the inability to independently verify the correctness of the transformations. In this paper, we present the Trusted LLM (T-LLM) Compiler, which proposes an advancement in compiler technology through a collaborative effort involving high-level LLM code transformations, traditional compilers, and verification tools. Experimental results reveal that it can significantly improve code correctness when tested on a set of PolyBench/C benchmarks. Our approach facilitates iterative code optimization efforts with verification strategies that enable corrective actions. Through this approach, T-LLM Compiler achieves code optimization accuracy of up to 83.3% and a speedup of up to 16.1\% on the PolyBench/C benchmarks, with the transformed code reaching an average of 26.7% speedup wrt standard baselines. Additionally, we release the project's source code to the open-source community.

UI 与 GUI Agent(0 篇)

本轮没有通过深读证据门的重点论文。

个人知识与本体(1 篇)

个人知识与本体 8/30

D$^2$ACCI: A Dual-Loop Diagnostic Protocol for Evidence-Preserving Agent Memory

记忆系统迭代不能只信总分:双环门控把故障定位到阶段:工程师该关心的是:只看聚合准确率,会把真实改进、切片回归和阶段故障混在一起,上线判断容易误判。D²ACCI 用双环诊断协议、配对统计门控和 DCR 指标,把每次记忆组件变更变成可追踪、可重放、可回滚的检查。

两句看懂

现有记忆管道评测只报聚合准确率,错误无法归因到摄入、检索、过滤或生成中的哪一段;D²ACCI 把每次干预绑定到配对统计门控、切片非回归检查和逐阶段追踪三项证据。在 LoCoMo 等三个基准上,三项干预达到 +1.9 到 +3.7pp、p≤.003,诊断制品 DCR@3 为 98-100% 而纯结果日志为 0%,BM25/RRF 只能特征标记的区别聚合评测看不见。

核心判断

可靠迭代记忆系统需要同时满足配对统计证据、受保护切片非回归和阶段追踪;DCR@3 98-100% 对纯结果日志 0% 直接说明,聚合准确率分不清真实提升与局部回归。

关键要点

1. 旧假设是聚合准确率够用;实际失败是摄入→检索→过滤→生成内部不可见,分数下降无法定位阶段。 2. 方法是 D²ACCI 双环:内环留 src IDs→top-k→filter log→answer,外环用 McNemar/bootstrap、切片门控、DCR 做受控检查。 3. 决定性结果是三项干预 +1.9 到 +3.7pp、p≤.003,DCR@3 98-100% 对纯日志 0%;行动是每次变更先过三项门控再上线、标记或回滚。

证据与结果

基准覆盖 LoCoMo(长对话记忆)、LongMemEval(长期记忆)、PersonaMem-V2(个性化记忆);MemStack 得分分别为 93.59%90.93%57.20%。五组配对消融中,补充提取、会话记忆检索、Forget Guard 达到 +1.9 到 +3.7pp、p≤.003;BM25/RRF 因区分度不足保留为特征标记。诊断审计显示诊断制品 DCR@3 为 98-100%,纯结果日志 DCR@3 为 0%;富追踪相比仅结果重标注有更高根因一致性。

打开论文原文
它要解决什么
多阶段记忆管道经过摄入、检索、过滤、生成后,端到端分数下降到底坏在哪一段?怎样让每次改动都有统计证据、受保护切片不回归,并能用阶段追踪定位根因?
研究路径
内环让记忆增强代理按摄入→更新→检索→过滤→组装→生成执行,并逐阶段输出 src IDs、top-k、filter log、answer。外环八步闭环:指定假设和目标切片;实现候选;运行基线和候选并收集 JSONL;计算配对结果集 I、R、Bw、Bc;按证据损失梯度标注根因;执行 McNemar/bootstrap、切片门控和 DCR;决定接受、回滚或特征标记;归档制品和拒绝先验。
这对工程意味着什么
第一行动:下一次改记忆组件前,先写目标切片和可证伪假设,并要求输出逐阶段追踪、配对统计和非回归报告。要避开的捷径:不要只看聚合准确率决定上线;BM25/RRF 案例说明聚合改善可能掩盖切片回归。
证据定位
补充提取、会话记忆检索、Forget Guard 三项干预配对检验通过:提升 +1.9 到 +3.7pp,p≤.003。BM25/RRF 只保留为特征标记,这个“通过门控”和“仅可标记”的区别在聚合评测里不可见。诊断制品 DCR@3 为 98-100%,纯结果日志为 0%,说明阶段追踪是根因定位的必要条件。(筛选维度:可复核评测、软件工程方法)
适用边界
三个基准的数据规模和采样策略未在摘录中说明;PersonaMem-V2 得分 57.20% 明显低于其他基准,但摘录未提供失败模式分析;协议有效性依赖内环追踪完整性,若追踪实现不完整则 DCR 指标失效。
方法与英文摘要

在 LoCoMo、LongMemEval、PersonaMem-V2 三个公开基准上实例化 MemStack 记忆内核。内环要求代理逐阶段留下追踪:src IDs→top-k→filter log→answer。外环按顺序执行:写清可证伪假设和目标切片,实现候选(共享核心或特征标记),采集 JSONL,按证据损失梯度标注根因,再做 McNemar/bootstrap 配对统计、切片门控和 DCR 计算,最后决定接受、特征标记或回滚,并归档 D²ACCI-Eval 制品。五组配对消融覆盖补充提取、会话检索、Forget Guard、BM25/RRF。

Memory is a key capability of LLM agents. Persistent memory extends this across sessions---enabling recall, revision, and personalization. Yet its multi-stage pipeline (ingestion, retrieval, filtering, generation) makes failures difficult to localize: end-to-end evaluation reveals that an error occurred, but not which stage caused it. Existing evaluations often report aggregate performance without paired statistical comparisons, slice-level non-regression checks, or stage-level diagnostic traces. We propose D$^2$ACCI (Diagnostic-Driven Artifact-based Closed-loop Controlled Iteration), a dual-loop protocol whose outer diagnostic gate promotes, feature-flags, or rejects memory interventions based on paired evidence, protected-slice monitoring, and trace-level localizability. We further introduce DCR, a graded observability metric that measures whether failures remain localizable, and D$^2$ACCI-Eval, a reusable artifact for gate replay. We instantiate the protocol in MemStack and evaluate on three public benchmarks, achieving 93.59% on LoCoMo, 90.93% on LongMemEval, and 57.20% on PersonaMem-V2. Five paired ablations show that supplement extraction, session-memory retrieval, and Forget Guard yield statistically significant gains (+1.9 to +3.7pp, all p $\le$ .003). In contrast, BM25/RRF is retained as a monitored feature flag---a distinction invisible to aggregate-only evaluation. A diagnostic audit shows enriched traces substantially improve root-cause agreement over result-only relabeling. Diagnostic artifacts reach 98--100% DCR@3 versus 0% for results-only logs. These results establish that robust memory-system iteration demands traceable, statistically grounded, and regression-aware evidence---exactly the gap D$^2$ACCI fills.

人机协同与对齐(0 篇)

本轮没有通过深读证据门的重点论文。

本轮分类概览

同一论文只归入一个最先命中的赛道,避免重复计数;“新增候选”只统计首次展示的论文。

赛道新增候选重点
形式化与程序验证10
软件工程与仓库智能10
代码质量与优化01
UI 与 GUI Agent00
个人知识与本体31
人机协同与对齐00

近一个季度监测日历

北京时间。绿色表示有可阅读的新候选,灰蓝表示已监测但无新增,橙色表示部分降级;“无记录”不等于失败。

2026 年 6 月

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无记录

近 14 次监测窗口

仅展示公开源的聚合运行状态,不含提示词、全文或个人数据。

本轮新增候选(5 篇)

按赛道、评分和日期展开;中文标签用于导航,英文摘要用于核验。已展示过的旧候选不会每日重复。

形式化与程序验证(1 篇)

形式化与程序验证 · 3/30 · 2026-08-18神经符号RTL抽象加速属性检查用LLM辅助识别可抽象信号并生成RTL抽象,加速形式验证NeuroAbs: A Neuro-Symbolic RTL Abstraction Framework for Property Checking Acceleration

Formal verification is a crucial technique for ensuring the functional correctness of hardware designs. In the context of property checking, a key challenge is how to efficiently prove a user-specified property in the face of increasingly complex RTL designs. To address this challenge, abstraction techniques are often employed to reduce system complexity and accelerate the verification process. However, prior RTL abstraction methods either require significant manual effort or rely on rule-based techniques that lack flexibility. This paper introduces NeuroAbs, a neuro-symbolic framework for RTL abstraction. NeuroAbs first uses LLM-assisted RTL analysis to identify signals suitable for abstraction. It then combines LLM-based abstraction with an AST-based symbolic RTL representation to better align the generated abstraction with the intended transformation. The soundness of each abstraction is checked using satisfiability modulo theories (SMT) solving. If the abstraction is too coarse for a successful proof, NeuroAbs applies counterexample-guided abstraction refinement (CEGAR) to iteratively refine the model. Experimental results show that NeuroAbs significantly improves the efficiency of hardware property checking across a range of verification tasks.

阅读 arXiv 原文

软件工程与仓库智能(1 篇)

软件工程与仓库智能 · 7/30 · 2026-08-17基于可观测性的微服务修复框架从遥测差异提取故障签名,575例基准上优于对比基线ORCA: Observability-Grounded Program Repair for Microservice Incidents

Microservice failures are often diagnosed from operational telemetry. However, automated program repair systems usually start from issue reports, localized code context, or failing tests. This mismatch leaves a gap between telemetry-based diagnosis and patch generation. We present ORCA, an observability-grounded APR pipeline for microservice incidents. ORCA first distills the differences in paired failure and reference telemetry into a fault signature, then uses the signature to identify candidate code and deployment-configuration locations. Repair graph agents and an Exploration agent generate unified-diff patch candidates from these locations. ORCA evaluates generated patches with a Telemetry-Grounded Patch Verifier that separates patch validity, syntactic and semantic correctness, test-oracle integrity, and telemetry replay. On a 575-case benchmark, ORCA outperforms all evaluated baselines in terms of cost-effectiveness. Results show that operational telemetry can be transformed from diagnostic evidence into actionable repair context: paired telemetry supports repair-oriented localization, while repair graph agents convert localized code and configuration evidence into constrained patch-generation context for the LLM. Telemetry-grounded verification then exposes repair outcomes that issue- or test-only evaluation would miss.

阅读 arXiv 原文

代码质量与优化(0 篇)

本轮该赛道没有候选论文。

UI 与 GUI Agent(0 篇)

本轮该赛道没有候选论文。

个人知识与本体(3 篇)

个人知识与本体 · 6/30 · 2026-08-18自改进智能体的脆弱性研究重评估发现评估噪声大且改进依赖任务顺序,需谨慎看待On the Fragility of Self-Improving Agents: Variance, Task Order, and Underspecification

Memory-based self-improving agents--those that learn from an online stream of tasks and improve over time by maintaining a textual memory bank--have shown great promise in recent literature. However, the reliability aspects of these methods have been critically overlooked. In this work, we conduct a comprehensive re-evaluation of two memory-based methods, broadening the scope of evaluation along two axes: (1) including multiple runs to quantify variance, and (2) randomly shuffling the tasks to investigate the effect of task order. Through these experiments, we make two observations that expose the fragility of current methods: First, agent evaluation is inherently noisy in complex environments and on multi-step tasks, and stacking a self-improving loop on top can further amplify this noise. Second, the agent's improvement is highly dependent on task order. Prior works often adopt default orderings that impose an implicit curriculum, acting as a hidden prerequisite for success. To better understand this fragility, we manually examine the agents' memory and hypothesize that task and environment underspecification contribute to this fragility. We validate this hypothesis by incorporating information that enables better specification, such as detailed rubrics and environment feedback, into the memory construction process. While this added information partially closes the performance degradation in previous experiments, significant gaps still remain, suggesting that other uncharacterized factors contribute to this fragility. Looking ahead, our work advocates for more rigorous evaluation protocols for self-improving agents by reporting results across multiple runs and stress-testing them under challenging conditions. Moreover, our findings on underspecification call for systems and interfaces that enable effective human oversight, preventing agents from failing in unforeseeable ways.

阅读 arXiv 原文
个人知识与本体 · 8/30 · 2026-08-18双环诊断协议定位智能体记忆故障面向持久记忆流水线,以外环诊断门控干预并引入可定位性度量D$^2$ACCI: A Dual-Loop Diagnostic Protocol for Evidence-Preserving Agent Memory

Memory is a key capability of LLM agents. Persistent memory extends this across sessions---enabling recall, revision, and personalization. Yet its multi-stage pipeline (ingestion, retrieval, filtering, generation) makes failures difficult to localize: end-to-end evaluation reveals that an error occurred, but not which stage caused it. Existing evaluations often report aggregate performance without paired statistical comparisons, slice-level non-regression checks, or stage-level diagnostic traces. We propose D$^2$ACCI (Diagnostic-Driven Artifact-based Closed-loop Controlled Iteration), a dual-loop protocol whose outer diagnostic gate promotes, feature-flags, or rejects memory interventions based on paired evidence, protected-slice monitoring, and trace-level localizability. We further introduce DCR, a graded observability metric that measures whether failures remain localizable, and D$^2$ACCI-Eval, a reusable artifact for gate replay. We instantiate the protocol in MemStack and evaluate on three public benchmarks, achieving 93.59% on LoCoMo, 90.93% on LongMemEval, and 57.20% on PersonaMem-V2. Five paired ablations show that supplement extraction, session-memory retrieval, and Forget Guard yield statistically significant gains (+1.9 to +3.7pp, all p $\le$ .003). In contrast, BM25/RRF is retained as a monitored feature flag---a distinction invisible to aggregate-only evaluation. A diagnostic audit shows enriched traces substantially improve root-cause agreement over result-only relabeling. Diagnostic artifacts reach 98--100% DCR@3 versus 0% for results-only logs. These results establish that robust memory-system iteration demands traceable, statistically grounded, and regression-aware evidence---exactly the gap D$^2$ACCI fills.

阅读 arXiv 原文
个人知识与本体 · 3/30 · 2026-08-18记忆介导的群体极化级联威胁提出以智能体记忆为持久通道的极化攻击新威胁,分三阶段传播GraphWake: Group Polarization via Memory-Mediated Polarization Cascade in LLM-Agent Communities

LLM-driven agents can autonomously exchange opinions on online platforms and form communities. Such agent-operated social platforms raise a new security concern: attackers may manipulate agents to induce group polarization. Existing methods manipulate agent prompts or construct echo chambers, both of which are difficult to realize in practice. We therefore formulate a new threat, Memory-Mediated Polarization Cascade, which uses agent memory as a persistence channel and public discussion as a propagation channel. This threat contains three stages. During exposure and memory retention, the attacker exposes a small set of target agents to arguments that reinforce their respective stated stances. The targets' memory systems then process and retain these arguments. During retrieval and reproduction, a shared stance-neutral discussion cues the targets to retrieve and reproduce their respective retained arguments. During iterative propagation, untreated agents influenced by the reproduced arguments restate and spread them. We instantiate this threat in GraphWake with three components: (i) stance-support argumentation knowledge graphs construct knowledge-based arguments; (ii) axiom-oriented triple selection distills them for reliable retention and reproduction; and (iii) stance-neutral memory cueing triggers concurrent retrieval and reproduction, initiating propagation. Experiments across multiple discussions and memory systems show that GraphWake substantially increases group polarization. These findings reveal a community-level polarization risk.

阅读 arXiv 原文

人机协同与对齐(0 篇)

本轮该赛道没有候选论文。