Papers › L2MAC: Large Language Model Automatic Computer for Extensive Code Generation

L2MAC: Large Language Model Automatic Computer for Extensive Code Generation

2 Oct 2023arXiv:2310.02003archive 2025-07-28

Samuel Holt, Max Ruiz Luyten, Mihaela van der Schaar

Transformer-based large language models (LLMs) are constrained by the fixed context window of the underlying transformer architecture, hindering their ability to produce long and coherent outputs. Memory-augmented LLMs are a promising solution, but current approaches cannot handle long output generation tasks since they (1) only focus on reading memory and reduce its evolution to the concatenation of new memories or (2) use very specialized memories that cannot adapt to other domains. This paper presents L2MAC, the first practical LLM-based general-purpose stored-program automatic computer (von Neumann architecture) framework, an LLM-based multi-agent system, for long and consistent output generation. Its memory has two components: the instruction registry, which is populated with a prompt program to solve the user-given task, and a file store, which will contain the final and intermediate outputs. Each instruction in turn is executed by a separate LLM agent, whose context is managed by a control unit capable of precise memory reading and writing to ensure effective interaction with the file store. These components enable L2MAC to generate extensive outputs, bypassing the constraints of the finite context window while producing outputs that fulfill a complex user-specified task. We empirically demonstrate that L2MAC achieves state-of-the-art performance in generating large codebases for system design tasks, significantly outperforming other coding methods in implementing the detailed user-specified task; we show that L2MAC works for general-purpose extensive text-based tasks, such as writing an entire book; and we provide valuable insights into L2MAC's performance improvement over existing methods.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2310.02003")

Code

Syntology Ran 10 of 14 code samples harvested from 2 repositories linked to this paper; 4 have no recorded run. Of those that ran: 10 ran with no contract checked.

By repository: official repository: 14 samples from 2 repositories, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

samholt/l2mac officialmentioned in papermentioned on GitHubMIT report
vanderschaarlab/l2mac officialmentioned in papermentioned on GitHubMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 10 ran; 0 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

10ran
4unverified

Licence: 0 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

clean_string samholt/l2mac/l2mac/utils/l2mac.py official repository ran fingerprinted MIT (permissive) · 0b71a825504a4b60 · report
create_logger_in_process samholt/l2mac/l2mac/utils/logging.py official repository ran MIT (permissive) · 83b71f722d249b84 · report
create_logger_in_process vanderschaarlab/l2mac/l2mac/utils/logging.py official repository ran MIT (permissive) · 181d691bea998bff · report
detect_cycles samholt/l2mac/l2mac/utils/l2mac.py official repository ran MIT (permissive) · f480b53ce00346f2 · report
detect_cycles vanderschaarlab/l2mac/l2mac/utils/l2mac.py official repository ran MIT (permissive) · 651da3ba8f61a0ef · report
find_best_match samholt/l2mac/l2mac/llm_providers/utils.py official repository ran MIT (permissive) · 77eab2d0bffb3e96 · report
find_best_match vanderschaarlab/l2mac/l2mac/llm_providers/utils.py official repository ran MIT (permissive) · 50ad5dbe5bb99660 · report
hash_messages samholt/l2mac/l2mac/utils/l2mac.py official repository ran fingerprinted MIT (permissive) · a88d2b9a3580b853 · report
hash_messages vanderschaarlab/l2mac/l2mac/utils/l2mac.py official repository ran fingerprinted MIT (permissive) · a14eca3ee93220ee · report
remove_nulls samholt/l2mac/l2mac/llm_providers/general.py official repository ran MIT (permissive) · 3c47508f7c1651ed · report
generate_log_file_path samholt/l2mac/l2mac/utils/logging.py official repository unverified MIT (permissive) · 49d36eae6084799b · report
generate_log_file_path vanderschaarlab/l2mac/l2mac/utils/logging.py official repository unverified MIT (permissive) · 19930614e876cc0c · report
num_tokens_from_messages samholt/l2mac/l2mac/llm_providers/openai.py official repository unverified MIT (permissive) · 2c48ff24398fb8a0 · report
num_tokens_from_messages vanderschaarlab/l2mac/l2mac/llm_providers/openai.py official repository unverified MIT (permissive) · b2239c20c6dcebef · report

Tasks

Code GenerationLanguage ModelingLanguage ModellingLarge Language Model

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Code Generation HumanEval L2MAC (GPT-4) Pass@1 90.2 #8 of 8 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Methods

Focus

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections