Papers › xLSTM Scaling Laws: Competitive Performance with Linear Time-Complexity

xLSTM Scaling Laws: Competitive Performance with Linear Time-Complexity

2 Oct 2025ICLRarXiv:2510.02228added by Syntology

Maximilian Beck, Kajetan Schweighofer, Sebastian Böck, Sebastian Lehner, Sepp Hochreiter

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Scaling laws play a central role in the success of Large Language Models (LLMs), enabling the prediction of model performance relative to compute budgets prior to training. While Transformers have been the dominant architecture, recent alternatives such as xLSTM offer linear complexity with respect to context length while remaining competitive in the billion-parameter regime. We conduct a comparative investigation on the scaling behavior of Transformers and xLSTM along the following lines, providing insights to guide future model design and deployment. First, we study the scaling behavior for xLSTM in compute-optimal and over-training regimes using both IsoFLOP and parametric fit approaches on a wide range of model sizes (80M-7B) and number of training tokens (2B-2T). Second, we examine the dependence of optimal model sizes on context length, a pivotal aspect that was largely ignored in previous work. Finally, we analyze inference-time scaling characteristics. Our findings reveal that in typical LLM training and inference scenarios, xLSTM scales favorably compared to Transformers. Notably, xLSTM models consistently Pareto-dominate Transformer models, delivering lower cross-entropy loss for the same compute budget.

PaperPDFCode 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="2510.02228")

Code

Syntology Ran 0 of 19 code samples harvested from 2 repositories linked to this paper; 19 have no recorded run.

By repository: found in paper text by Syntology: 19 samples from 2 repositories, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

NX-AI/mlstm_kernels found in paper text by SyntologyNOASSERTION report
NX-AI/xlstm-jax found in paper text by SyntologyNOASSERTION report

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

19 samples harvested; 0 ran; 0 honoured the contract we drafted; 19 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.

19unverified

Licence: 19 of the 19 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.

attention_causal_pt_cudnn NX-AI/mlstm_kernels/mlstm_kernels/baselines/flash_attention/torch_sdp_attention.py found in paper text by Syntology unverified licence not identified · pointer only · 2d94868c29f5e250 · report
attention_causal_pt_fa2 NX-AI/mlstm_kernels/mlstm_kernels/baselines/flash_attention/torch_sdp_attention.py found in paper text by Syntology unverified licence not identified · pointer only · 2bfbdc63b75b8758 · report
attention_causal_pt_math NX-AI/mlstm_kernels/mlstm_kernels/baselines/flash_attention/torch_sdp_attention.py found in paper text by Syntology unverified licence not identified · pointer only · 0c704f145e43d91a · report
class_to_name NX-AI/xlstm-jax/xlstm_jax/import_utils.py found in paper text by Syntology unverified licence not identified · pointer only · 658eb63a92442898 · report
compute_total_model_flops NX-AI/mlstm_kernels/mlstm_kernels/utils/flops/model_flops_computation.py found in paper text by Syntology unverified licence not identified · pointer only · b2ffb186a368be72 · report
compute_total_model_flops_for_block_flops_dict NX-AI/mlstm_kernels/mlstm_kernels/utils/flops/model_flops_computation.py found in paper text by Syntology unverified licence not identified · pointer only · 37e2df0514602d43 · report
contiguous NX-AI/mlstm_kernels/mlstm_kernels/torch/utils.py found in paper text by Syntology unverified licence not identified · pointer only · 026ce928b14fa81f · report
dtype2str NX-AI/mlstm_kernels/mlstm_kernels/jax/utils.py found in paper text by Syntology unverified licence not identified · pointer only · 3e55cc6a7427acae · report
dtype2str NX-AI/mlstm_kernels/mlstm_kernels/torch/utils.py found in paper text by Syntology unverified licence not identified · pointer only · 361348f3143f2432 · report
get_stride NX-AI/mlstm_kernels/mlstm_kernels/jax/stride_utils.py found in paper text by Syntology unverified licence not identified · pointer only · 8ae078c843f8e319 · report
get_strides NX-AI/mlstm_kernels/mlstm_kernels/jax/stride_utils.py found in paper text by Syntology unverified licence not identified · pointer only · 6560db241100ba72 · report
is_power_of_2 NX-AI/mlstm_kernels/mlstm_kernels/utils/kernels.py found in paper text by Syntology unverified licence not identified · pointer only · 78c9d83eed016b5f · report
resolve_import NX-AI/xlstm-jax/xlstm_jax/import_utils.py found in paper text by Syntology unverified licence not identified · pointer only · 1c08f5b6c2ddb6d0 · report
resolve_import_from_string NX-AI/xlstm-jax/xlstm_jax/import_utils.py found in paper text by Syntology unverified licence not identified · pointer only · e1a2912f3f776042 · report
to_numpy NX-AI/mlstm_kernels/mlstm_kernels/jax/utils.py found in paper text by Syntology unverified licence not identified · pointer only · bdab6beecbe21c54 · report
torch2triton_dtype NX-AI/mlstm_kernels/mlstm_kernels/torch/utils.py found in paper text by Syntology unverified licence not identified · pointer only · 613b28a130f51d5b · report
wrap_chunkwise__arbitrary_sequence_length NX-AI/mlstm_kernels/mlstm_kernels/torch/kernel_wrappers.py found in paper text by Syntology unverified licence not identified · pointer only · 96db97b5fd6e9fec · report
wrap_chunkwise__arbitrary_sequence_length_with_padding NX-AI/mlstm_kernels/mlstm_kernels/torch/kernel_wrappers.py found in paper text by Syntology unverified licence not identified · pointer only · 9a7c16a025a91fbc · report
wrap_chunkwise__pad_zeros NX-AI/mlstm_kernels/mlstm_kernels/torch/kernel_wrappers.py found in paper text by Syntology unverified licence not identified · pointer only · c5dbe3df1807c498 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2510.02228, was issued in October 2025, after that date, so the archive has no leaderboard rows for it.

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