Papers for

software optimization teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Thermodynamical AI method improves evolving code and descriptions

T-GADE: Thermodynamical Generative-AI-Driven Evolution of LLM Artifacts

Abstract: Integrating evolutionary computation and large language models (LLMs) requires control of population diversity as well as generative capability. Among LLM outputs, those with explicit structure, such as a description paired with code, are structured artifacts; we use artifact for short. We propose T-GADE, which evolves these artifacts by extending thermodynamical genetic algorithms through LLM-based genetic operators and artifact-level diversity evaluation. A common free-energy objective supports generational and steady-state updates, with Fermi-type occupancy excluding repeated genotypes and Bose-type occupancy permitting them. We establish exact one-member removal and conditions for recovering the zero-temperature survival rule of Evolution of Heuristics (EoH). On the online bin-packing task studied in the EoH paper, excess measures relative bin-count overhead above a volume lower bound. Training excess uses search instances; transfer excess uses instances with another bin capacity. Generational Bose-type T-GADE at $T=0.003$ reduced median training excess by approximately 29%, from 1.152% to 0.815%, over 20 runs per configuration (two-sided Mann-Whitney $p=0.042$, Cliff's $δ=0.378$). Validation selection among its two highest-ranked final candidates reached the same median transfer excess as EoH, 0.496%. These results demonstrate the utility of thermodynamical selection and validation-based use of retained artifacts.

Thu 10 SeptArtificial IntelligenceNeural and Evolutionary Computing
The gist
Combining evolutionary computing with large language models (LLMs) can create better sets of structured outputs like paired descriptions and code. The authors propose a method called T-GADE that uses a physics-inspired selection process to evolve these paired artifacts while keeping diversity in the population. They tested this approach on a bin-packing problem and showed it reduces waste compared to previous methods. Their results confirm that this thermodynamics-based selection helps find better solutions and reuse good results.
Open 2609.12286v1

Large language models reason more efficiently using geometric latent states

A*-Thought-V2: Efficient Latent Reasoning via Geometric Dynamics of LLM

Abstract: Chain-of-Thought (CoT) improves the reasoning ability of Large Language Models (LLMs) but incurs substantial computation and context costs. Existing methods either lose intermediate information through hard pruning or lack a principled criterion for continuous compression. We present A*-Thought-V2, a geometric dynamics of LLM guided framework that models CoT as a hidden-state trajectory and replaces hard deletion with an explicit-implicit interleaved latent architecture. After projecting question, step, and solution representations into a 3D PCA space, it measures alignment between each local transition and global question-to-solution direction. Aligned steps remain explicit text, whereas deviating steps are compressed into continuous latent tokens. Directional angles capture both local semantics and reasoning dynamics: small angles indicate direct execution and answer formation, while large angles more frequently involve checking, correction, and branch exploration; their temporal variation reveals exploration, convergence, and refinement stages. To train this architecture, we introduce stepwise embedding forcing, which pools each redundant step into a single latent embedding, and label forcing, which supervises that latent token with a soft multi-modal vocabulary distribution instead of a hard one-hot label. Experiments on Qwen3.5-9B and Qwen3.6-27B across six in-domain and out-of-domain benchmarks show that A*-Thought-V2 improves average accuracy by up to 2.6% while reducing response length by up to half, increasing Accuracy per Computation Unit by 2.29$\times$, and reducing preprocessing and training time by 94.6% and up to 80.3%, respectively. Representation analyses suggest that latent states form a compact region distinct from textual states, while higher entropy at latent-token positions reflects broader soft targets that encourage richer step-level feature learning.

Mon 7 SeptComputation and LanguageArtificial IntelligenceMachine Learning
The gist
Large language models think through problems by writing out steps, but this can take a lot of time and computer power. The paper introduces a way to let the model keep important steps as text while turning less important ones into shorter, hidden summaries by looking at how the steps change direction in a special 3D space. This method helps the model solve problems more accurately and faster, using less computing resources. The authors trained the models to learn good summaries without losing important details.
Open 2609.07821v1