REVIEW 4 major objections 5 minor 54 references
HyenaND brings global, input-dependent convolution to multi-dimensional data at subquadratic cost.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
2026-08-03 02:00 UTC pith:RT2HMGXA
load-bearing objection A genuinely useful ND subquadratic operator with an impressive empirical sweep, but a headline The Well claim is contradicted by its own Table 12, and the fast implementation is still closed — worth a serious referee, not a desk reject. the 4 major comments →
Native Multi-Dimensional Subquadratic Operators via Input Dependent Long Convolutions
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
On the paper's own terms, HyenaND's central claim is that a long-convolution operator can be global, subquadratic, and input-dependent in the native geometry of N-dimensional data. The kernel K(x) is synthesized once per input: register tokens prepended to the grid summarize the input into a control variable z(x); a FiLM-conditioned SIREN MLP maps coordinates to filter values; a Gaussian window bounds the receptive field; and a single ND FFT convolution applies the kernel at every position in O(∏ₙ Lₙ log ∏ₙ Lₙ). Empirically, pure HyenaND stacks match strong attention baselines on ImageNet-1K, PanTS 3D segmentation, OpenGenome2 genomics, and the PDE suites of The Well, and striped HyenaND-att
What carries the argument
The operator is y = RMSNorm(Sigmoid(v) ⊙ (K(x) * RMSNorm(ℓ2(q) ⊙ SiLU(k)))) computed via ND FFT. Kernel synthesis is the load-bearing device: K_i(x) = w(c_i) ⊙ f_θ(c_i; z(x)), where z(x) is a softmax-weighted average over learnable register tokens, f_θ is a joint N-dimensional SIREN with block-diagonal multi-frequency initialization, and w is a per-axis learnable Gaussian window. Because z(x) is computed once per input, the same kernel is applied at every position, preserving the single-FFT path while still giving the operator input dependence. The paper also proves that a gated Hyena layer computes exactly separable attention matrices—a Toeplitz kernel sandwiched between diagonal gates—whic
Load-bearing premise
The load-bearing premise is that conditioning the kernel on the whole input once per example—not per token—is enough input dependence for multi-dimensional data; the paper's own color-cond probe shows a case where per-token bidirectional Mamba beats HyenaND, so if tasks need per-position content retrieval, this operator cannot express it.
What would settle it
A direct test: on the 2D color-cond spatial recall task, scale the number of colored distractors or the distance between key and readout and compare bidirectional Mamba and HyenaND at matched compute. If Mamba's advantage over HyenaND grows as retrieval becomes more selective and content-dependent, the sample-level conditioning premise fails in exactly the regime the paper claims to serve.
If this is right
- Patchification stops being a necessary preprocessing step: HyenaND can ingest images and volumes at native resolution and follow the accuracy gains of smaller patches without attention's quadratic cost; at patch 2×2 the paper reports roughly 6× fewer FLOPs than matched attention.
- Hybrids that interleave HyenaND with attention layers outperform both pure attention and bidirectional-Mamba hybrids on ImageNet and 3D segmentation, suggesting a productive default architecture for ND data.
- Native-geometry mixing preserves long-range transport that rasterized recurrence loses, as shown by the 3D copy task where bidirectional Mamba barely improves on the mean-predictor floor while HyenaND solves the task.
- Long-context genomics becomes tractable: a 1B striped-hyena model trains to convergence with stable throughput through 16M-token contexts and shows decreasing per-token NLL with depth, indicating it uses distant context rather than merely tolerating it.
- 3D medical segmentation memory drops about 11% versus windowed attention while matching or improving Dice, because the FFT path avoids materializing attention matrices.
Where Pith is reading between the lines
- Sample-level conditioning is a deliberate bound: since the kernel is shared across all positions, any task that needs content-based retrieval at individual positions—the paper's own 2D color-cond probe at patch 4 shows bidirectional Mamba winning—may require a token-level mechanism on top of HyenaND.
- The length-generalization guarantee (Theorem A.7) is only tight for small deviations from the training length, and the 16M-context runs use staged doubling. A testable extension is whether a model trained at 8K can jump directly to 1M without the staged schedule and whether its kernel remains stable outside the [−1,1]^N coordinate domain.
- HyenaND's kernel synthesis could be reused as a learned tokenizer: a few layers on raw pixels or voxels could aggregate fine-grained structure into information-dense tokens for any downstream backbone, turning patch size into a learned quantity. The paper gestures at this direction but does not implement it.
- The separable-attention characterization suggests gated Hyena's inductive bias is complementary to attention rather than simply weaker; one can test whether increasing the number of gates or the order of the operator extends its expressiveness toward fuller attention patterns.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces HyenaND, an N-dimensional long-convolution operator with implicit SIREN-parameterized kernels, Gaussian masking, and sample-level input dependence implemented through learned register tokens and FiLM conditioning. It also presents nSubQ, a fused CUDA library for ND FFT convolutions, and positions HyenaND as a native-geometry, subquadratic alternative to attention and rasterized SSMs. Experiments span controlled spatial-recall probes, 1B-parameter genomics language modeling, ImageNet classification, PDE surrogate modeling on The Well, 3D medical segmentation, and kernel-level throughput benchmarks. The central claims are that pure HyenaND stacks match strong attention baselines, hybrid HyenaND–attention configurations outperform recurrent hybrids, and nSubQ converts asymptotic advantages into wall-clock speedups.
Significance. If the claims hold, HyenaND offers a principled path around the patchification/quadratic-attention trade-off for multi-dimensional data and gives the convolutional family a form of input dependence without per-token selectivity. The theoretical characterization of gated Hyena as separable attention (Thm A.5) and the length-generalization bound (Thm A.7) are useful, though technically standard. The empirical scope is commendably broad across 1D/2D/3D tasks. However, several headline empirical statements are internally inconsistent, and the custom CUDA implementation is not made available, so the reported gains are currently not independently checkable.
major comments (4)
- [§5.4, Table 12, §6] The text claims HyenaND 'achieves the lowest VRMSE on all eight datasets' and 'beats the full-resolution CNextU-net baseline on every dataset'. Table 12's Shear Flow row contradicts this: CNextU-net achieves 0.0262 while the best HyenaND result is 0.0268 (p=8). The conclusion (§6) repeats the false universal. Please correct the claim and reconcile the numbers.
- [§5.1, Tables 5/6/8] The sentence 'HyenaND outperforms both Attention and Mamba across all tasks' is not supported by the reported best-patch results. In 1D color cond (Table 5), Mamba-bidir reaches 2.38e-4 while HyenaND's best is 5.0e-3; in 2D color cond (Tables 6/8), Mamba-bidir reaches 4.06e-4 while HyenaND's best is 2.09e-3. The valid claim appears to be limited to the native-resolution regime; the text should be revised accordingly.
- [Appendix B.2] The nSubQ CUDA implementation is the basis for the wall-clock speedup claims (Figures 8–12 and Table 10). The footnote states that source code and documentation are omitted for double-blind review. Without the implementation or a detailed kernel-level description, the reported speedups (6×, 40×, memory reductions, and the 16M-context genomics throughput) cannot be independently verified. For a journal publication, the artifacts or complete pseudocode should be released, or the speedup claims should be presented as preliminary.
- [§3.2.2, Eq. (5), Fig. 4] The computation order for the control variable z(x) is ambiguous. If the 'register activations of the present layer' are the register rows of the input to that layer, then at the first layer those registers are learned constants shared across all inputs, so the kernel K(x) is not actually sample-dependent at that layer. If they are the outputs of the same layer, the definition is circular because K(x) is needed to compute those outputs. Please specify the order of computation and clarify the precise sense in which a single HyenaND layer is input-dependent.
minor comments (5)
- [Appendix C.4] The appendix states 'five selected datasets' from The Well, but Table 12 reports eight datasets. The main text also says 'eight PDE datasets'. Please align the dataset count and describe the selection criterion.
- [§5.1] The reference 'As shown in Table 5' appears to refer to the main-text summary Table 1, not the appendix Table 5. Please correct the cross-reference.
- [§3.2.2] The phrase 'too crude to for kernel conditioning' contains a typo; should be 'too crude for kernel conditioning'.
- [§5.4] The sentence 'For both shear flow, euler multi quadrants and helmholtz staircase' is grammatically awkward; use 'For shear flow, euler multi quadrants, and helmholtz staircase'. Also, the 'both' is incorrect for a list of three.
- [§3.2.2] The symbol B is used both for the number of frequency blocks in §3.2.1 and for the batch size in the sentence 'one for each of the inputs in a batch of size B'. Please disambiguate the notation.
Circularity Check
No significant circularity: the operator is defined by construction, theoretical claims are proven from stated definitions, and empirical claims rest on external benchmarks.
full rationale
HyenaND's derivation chain is self-contained. Eq. 3 defines the operator with K_i(x) = w(c_i) ⊙ f_theta(c_i; z(x)), where z(x) is a softmax-weighted register summary; 'sample-level input dependence' is therefore an architectural definition rather than a derived prediction. Theorem A.5 is a direct algebraic expansion of the gated Hyena mixer into A_ij = T_{i-j} r_i c_j and verifies the claimed factorization without importing the conclusion. Theorem A.7 derives a length-generalization bound from the SIREN Lipschitz estimate and displacement normalization; the bound is an output, not an input. The SIREN variance correction W0 ~ U(-1/sqrt(N), 1/sqrt(N)) follows from computing Var(w_0^T r) and matching the 1D reference variance. Empirical claims are benchmarked against external datasets (OpenGenome2, ImageNet-1K, The Well, PanTS) and external/independent baselines, with no test-set quantity used to set a parameter that is then reported as a prediction. The only self-citations appear in the systems context: [2,14,16] are the authors' Evo2/BioNeMo codebase and prior convolution-systems work, invoked to situate nSubQ (Appx. B) rather than to justify accuracy claims; Appendix B.2 notes source code is omitted for double-blind review, which is a reproducibility limitation, not a circular step. I therefore find no load-bearing reduction of any result to its own input.
Axiom & Free-Parameter Ledger
free parameters (5)
- Gaussian window per-channel/per-axis variance σ² =
learned during training; initial log-spaced ramp
- SIREN frequency block schedule (ω_min, ω_max, B, s_min, s_max) =
not reported as exact numbers
- off-block initial scale ρ =
0.1
- number of registers R =
not specified
- fixed frequency parameter for The Well experiments =
not specified
axioms (5)
- standard math ND FFT-based convolution with proper zero-padding computes the exact linear convolution.
- domain assumption A SIREN MLP over [−1,1]^N can parameterize sufficiently expressive global ND kernels.
- domain assumption Natural and multi-dimensional data are approximately LTI, so a single per-sample kernel is appropriate.
- ad hoc to paper Register tokens accumulate global information sufficient to condition the kernel after one pass through the operator.
- standard math Length generalization bound assumes bounded inputs and predictable SIREN behavior outside the training displacement range.
Cite this review
Pith. "Pith review of Native Multi-Dimensional Subquadratic Operators via Input Dependent Long Convolutions." pith.science (2026). https://pith.science/paper/RT2HMGXA
@misc{pith2026260719378,
author = {Pith},
title = {Pith review of: Native Multi-Dimensional Subquadratic Operators via Input Dependent Long Convolutions},
year = {2026},
howpublished = {\url{https://pith.science/paper/RT2HMGXA}},
note = {Machine review of arXiv:2607.19378}
}
read the original abstract
Subquadratic alternatives to attention require compromises when applied to multi-dimensional data: standard convolutions lack global receptive fields and input dependency, while recurrent models require rasterizing data such as images, volumes, and partial differential equation (PDE) into an ad-hoc $1\rm D$ scan order that violates their spatial structure. We introduce \textit{HyenaND}, a subquadratic, global, input-dependent operator that acts directly on the native geometry of multidimensional data through convolutions with implicitly parametrized global, input-dependent multi-dimensional convolutional kernels. Our CUDA implementation, \texttt{nSubQ}, fuses the FFT-convolution path to turn HyenaND's $\mathcal{O}(L \log L)$ scaling into wall-clock speedups. Across long-context genomics, computer vision, medical imaging, and PDE modeling, pure HyenaND stacks match the accuracy of strong attention baselines, while hybrid configurations that interleave HyenaND and attention layers outperform both pure attention and strong recurrence-based hybrids.
Figures
Reference graph
Works this paper leans on
-
[1]
Blelloch
Guy E. Blelloch. Prefix sums and their applications. Technical Report CMU-CS-90-190, School of Computer Science, Carnegie Mellon University, 1990
1990
-
[2]
Durrant, Jerome Ku, Michael Poli, Greg Brockman, Daniel Chang, Gabriel A
Garyk Brixi, Matthew G. Durrant, Jerome Ku, Michael Poli, Greg Brockman, Daniel Chang, Gabriel A. Gonzalez, Samuel H. King, David B. Li, Aditi T. Merchant, Mohsen Naghipourfar, Eric Nguyen, Chiara Ricci-Tam, David W. Romero, Gwanggyu Sun, Ali Taghibakshi, Anton V orontsov, Brandon Yang, Myra Deng, Liv Gorton, Nam Nguyen, Nicholas K. Wang, Etowah Adams, St...
2025
-
[3]
Transformers are SSMs: Generalized models and efficient algorithms through structured state space duality
Tri Dao and Albert Gu. Transformers are SSMs: Generalized models and efficient algorithms through structured state space duality. InInternational Conference on Machine Learning (ICML), 2024
2024
-
[4]
Flashattention: Fast and memory-efficient exact attention with io-awareness
Tri Dao, Dan Fu, Stefano Ermon, Atri Rudra, and Christopher R ´e. Flashattention: Fast and memory-efficient exact attention with io-awareness. In S. Koyejo, S. Mo- hamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh, editors,Advances in Neu- ral Information Processing Systems, volume 35, pages 16344–16359. Curran Associates, Inc., 2022. URL https://proceedi...
2022
-
[5]
Vision transformers need registers, 2023
Timoth´ee Darcet, Maxime Oquab, Julien Mairal, and Piotr Bojanowski. Vision transformers need registers, 2023
2023
-
[6]
ImageNet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. ImageNet: A large-scale hierarchical image database. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 248–255, 2009
2009
-
[7]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. InInternational Conference on Learning Representations, 2021
2021
-
[8]
Hungry hungry hippos: Towards language modeling with state space models
Daniel Y Fu, Tri Dao, Khaled K Saab, Armin W Thomas, Atri Rudra, and Christopher R ´e. Hungry hungry hippos: Towards language modeling with state space models. InInternational Conference on Learning Representations, 2023
2023
-
[9]
Fu, Hermann Kumbong, Eric Nguyen, and Christopher R´e
Daniel Y . Fu, Hermann Kumbong, Eric Nguyen, and Christopher R´e. FlashFFTConv: Efficient convolutions for long sequences with tensor cores. InInternational Conference on Learning Representations (ICLR), 2024
2024
-
[10]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023. 12
Pith/arXiv arXiv 2023
-
[11]
Efficiently modeling long sequences with structured state spaces
Albert Gu, Karan Goel, and Christopher Re. Efficiently modeling long sequences with structured state spaces. InInternational Conference on Learning Representations, 2022
2022
-
[12]
Swin unetr: Swin transformers for semantic segmentation of brain tumors in mri images
Ali Hatamizadeh, Vishwesh Nath, Yucheng Tang, Holger R Roth, and Daguang Xu. Swin unetr: Swin transformers for semantic segmentation of brain tumors in mri images. InInternational MICCAI Brainlesion Workshop, pages 272–284. Springer, 2022
2022
-
[13]
Squeeze-and-excitation networks
Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018
2018
-
[14]
John, Dejun Lin, Polina Binder, Malcolm Greaves, Vega Shah, John St
Peter St. John, Dejun Lin, Polina Binder, Malcolm Greaves, Vega Shah, John St. John, Adrian Lange, Patrick Hsu, Rajesh Illango, Arvind Ramanathan, Anima Anandkumar, David H Brookes, Akosua Busia, Abhishaike Mahajan, Stephen Malina, Neha Prasad, Sam Sinai, Lindsay Edwards, Thomas Gaudelet, Cristian Regep, Martin Steinegger, Burkhard Rost, Alexander Brace, ...
arXiv 2025
-
[15]
Transformers are rnns: Fast autoregressive transformers with linear attention
Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and Franc ¸ois Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. InInternational Conference on Machine Learning, pages 5156–5165. PMLR, 2020
2020
-
[16]
Romero, Garyk Brixi, Brandon Yang, Anton V orontsov, Ali Taghibakhshi, Amy X
Jerome Ku, Eric Nguyen, David W. Romero, Garyk Brixi, Brandon Yang, Anton V orontsov, Ali Taghibakhshi, Amy X. Lu, Dave P. Burke, Greg Brockman, Stefano Massaroli, Christopher R´e, Patrick D. Hsu, Brian L. Hie, Stefano Ermon, and Michael Poli. Systems and algorithms for convolutional multi-hybrid language models at scale, 2025. URL https://arxiv.org/abs/ ...
Pith/arXiv arXiv 2025
-
[17]
Mamba-ND: Selective state space modeling for multi-dimensional data
Shufan Li, Harkanwar Singh, and Aditya Grover. Mamba-ND: Selective state space modeling for multi-dimensional data. InEuropean Conference on Computer Vision (ECCV), 2024
2024
-
[18]
Pants: The pancreatic tumor segmentation dataset
Wenxuan Li, Xinze Zhou, Qi Chen, Tianyu Lin, Pedro RAS Bassi, Xiaoxi Chen, Chen Ye, Zheren Zhu, Kai Ding, Heng Li, et al. Pants: The pancreatic tumor segmentation dataset. In The Thirty-ninth Annual Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2025
2025
-
[19]
VMamba: Visual state space model.arXiv preprint arXiv:2401.10166, 2024
Yue Liu, Yunjie Tian, Yuzhong Zhao, Hongtian Yu, Lingxi Xie, Yaowei Wang, Qixiang Ye, and Yunfan Liu. VMamba: Visual state space model.arXiv preprint arXiv:2401.10166, 2024
Pith/arXiv arXiv 2024
-
[20]
Swin transformer: Hierarchical vision transformer using shifted windows
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 10012–10022, 2021
2021
-
[21]
A convnet for the 2020s
Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11976–11986, 2022
2022
-
[22]
Downs, Preey Shah, Tri Dao, Stephen A
Eric Nguyen, Karan Goel, Albert Gu, Gordon W. Downs, Preey Shah, Tri Dao, Stephen A. Baccus, and Christopher R´e. S4ND: Modeling images and videos as multidimensional signals with state spaces. InAdvances in Neural Information Processing Systems (NeurIPS), 2022. 13
2022
-
[23]
Durrant, Brian Kang, Dhruva Katrekar, David B
Eric Nguyen, Michael Poli, Matthew G. Durrant, Brian Kang, Dhruva Katrekar, David B. Li, Liam J. Bartie, Armin W. Thomas, Samuel H. King, Garyk Brixi, Jeremy Sullivan, Madelena Y . Ng, Ashley Lewis, Aaron Lou, Stefano Ermon, Stephen A. Baccus, Tina Hernandez-Boussard, Christopher R´e, Patrick D. Hsu, and Brian L. Hie. Sequence modeling and design from mol...
-
[24]
NVIDIA Tesla V100 GPU Architecture
NVIDIA Corporation. NVIDIA Tesla V100 GPU Architecture. Technical Report WP- 08608-001 v1.1, NVIDIA Corporation, August 2017. URL https://images.nvidia. com/content/volta-architecture/pdf/volta-architecture-whitepaper.pdf . Whitepaper
2017
-
[25]
NVIDIA A100 Tensor Core GPU Architecture
NVIDIA Corporation. NVIDIA A100 Tensor Core GPU Architecture. Technical Report V1.0, NVIDIA Corporation, 2020. URL https://images.nvidia.com/aem-dam/en-zz/ Solutions/data-center/nvidia-ampere-architecture-whitepaper.pdf . Whitepa- per
2020
-
[26]
NVIDIA H100 Tensor Core GPU Architecture
NVIDIA Corporation. NVIDIA H100 Tensor Core GPU Architecture. Technical Report V1.03, NVIDIA Corporation, 2022. URL https://nvdam.widen.net/s/95bdhpsgrs/nvidia_ h100_tensor_core_gpu_architecture_whitepaper_v1.03. Whitepaper
2022
-
[27]
NVIDIA Blackwell Architecture Technical Overview
NVIDIA Corporation. NVIDIA Blackwell Architecture Technical Overview. Tech- nical report, NVIDIA Corporation, 2024. URL https://resources.nvidia.com/ en-us-blackwell-architecture . Technical overview; covers GB200 Grace Blackwell Superchip, HGX B200, and HGX B100
2024
-
[28]
NVIDIA Corporation, cuda toolkit 13.2; cufft 12.2.0.46 edition, 2026
NVIDIA Corporation.cuFFT API Reference. NVIDIA Corporation, cuda toolkit 13.2; cufft 12.2.0.46 edition, 2026. URL https://docs.nvidia.com/cuda/cufft/index.html. Last updated 2026-04-02; accessed 2026-04-30
2026
-
[29]
NVIDIA Corporation, mathdx 26.03.0 (cufftdx 1.7.0) edition, 2026
NVIDIA Corporation.cuFFTDx Documentation. NVIDIA Corporation, mathdx 26.03.0 (cufftdx 1.7.0) edition, 2026. URL https://docs.nvidia.com/cuda/cufftdx/index. html. Accessed: 2026-04-30
2026
-
[30]
CUTLASS: CUDA Templates for Linear Algebra Subroutines
NVIDIA Corporation. CUTLASS: CUDA Templates for Linear Algebra Subroutines. https: //github.com/NVIDIA/cutlass, 2026. Version 4.3.5; released 2026-01-09; accessed 2026- 04-30
2026
-
[31]
Agocs, Miguel Beneitez, Marsha Berger, Blakesley Burkhart, Stuart B
Ruben Ohana, Michael McCabe, Lucas Meyer, Rudy Morel, Fruzsina J. Agocs, Miguel Beneitez, Marsha Berger, Blakesley Burkhart, Stuart B. Dalziel, Drummond B. Fielding, Daniel Fortunato, Jared A. Goldberg, Keiya Hirashima, Yan-Fei Jiang, Rich R. Kerswell, Suryanarayana Maddu, Jonah Miller, Payel Mukhopadhyay, Stefan S. Nixon, Jeff Shen, Romain Watteaux, Brun...
2024
-
[32]
Rwkv: Reinventing rnns for the transformer era
Bo Peng, Eric Alcaide, Quentin Anthony, Alon Albalak, Samuel Arcadinho, Stella Cao, Xuan Cheng, Michael Chung, Matteo Grella, et al. Rwkv: Reinventing rnns for the transformer era. InEmpirical Methods in Natural Language Processing, 2023
2023
-
[33]
FiLM: Visual reasoning with a general conditioning layer
Ethan Perez, Florian Strub, Harm de Vries, Vincent Dumoulin, and Aaron Courville. FiLM: Visual reasoning with a general conditioning layer. InAAAI Conference on Artificial Intelligence, 2018
2018
-
[34]
Hyena hierarchy: Towards larger convolutional language models
Michael Poli, Stefano Massaroli, Eric Nguyen, Daniel Y Fu, Tri Dao, Stephen Baccus, Yoshua Bengio, Stefano Ermon, and Christopher R´e. Hyena hierarchy: Towards larger convolutional language models. InInternational Conference on Machine Learning, pages 28043–28078. PMLR, 2023
2023
-
[35]
Romero, Robert-Jan Bruintjes, Jakub M
David W. Romero, Robert-Jan Bruintjes, Jakub M. Tomczak, Erik J. Bekkers, Mark Hoogen- doorn, and Jan C. van Gemert. FlexConv: Continuous kernel convolutions with differentiable kernel sizes. InInternational Conference on Learning Representations (ICLR), 2022. 14
2022
-
[36]
Romero, Anna Kuzina, Erik J
David W. Romero, Anna Kuzina, Erik J. Bekkers, Jakub M. Tomczak, and Mark Hoogendoorn. CKConv: Continuous kernel convolution for sequential data. InInternational Conference on Learning Representations (ICLR), 2022
2022
-
[37]
Implicit neural representations with periodic activation functions
Vincent Sitzmann, Julien Martel, Alexander Bergman, David Lindell, and Gordon Wetzstein. Implicit neural representations with periodic activation functions. InAdvances in Neural Information Processing Systems, volume 33, pages 7462–7473, 2020
2020
-
[38]
Smith, Andrew Warrington, and Scott W
Jimmy T.H. Smith, Andrew Warrington, and Scott W. Linderman. Simplified state space layers for sequence modeling. InInternational Conference on Learning Representations, 2023
2023
-
[39]
HyenaPixel: Global image context with convolutions, 2024
Julian Spravil, Sebastian Houben, and Sven Behnke. HyenaPixel: Global image context with convolutions, 2024. URLhttps://arxiv.org/abs/2402.19305
arXiv 2024
-
[40]
Yutao Sun, Li Dong, Shaohan Huang, Shuming Ma, Tengchao Xia, Jilong Xue, Jianyong Wang, and Furu Wei. Retentive network: A successor to transformer for large language models.arXiv preprint arXiv:2307.08621, 2023
Pith/arXiv arXiv 2023
-
[41]
Spike no more: Stabilizing the pre-training of large language models, 2025
Sho Takase, Shun Kiyono, Sosuke Kobayashi, and Jun Suzuki. Spike no more: Stabilizing the pre-training of large language models, 2025. URLhttps://arxiv.org/abs/2312.16903
Pith/arXiv arXiv 2025
-
[42]
Kimi linear: An expressive, efficient attention architecture.arXiv preprint arXiv:2510.26692, 2025
Kimi Team, Yu Zhang, Zongyu Lin, Xingcheng Yao, Jiaxi Hu, Fanqing Meng, Chengyin Liu, Xin Men, Songlin Yang, Zhiyuan Li, et al. Kimi linear: An expressive, efficient attention architecture.arXiv preprint arXiv:2510.26692, 2025
Pith/arXiv arXiv 2025
-
[43]
Training data-efficient image transformers & distillation through attention
Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Herv´e J´egou. Training data-efficient image transformers & distillation through attention. In International Conference on Machine Learning, pages 10347–10357. PMLR, 2021
2021
-
[44]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. InAdvances in neural information processing systems, volume 30, 2017
2017
-
[45]
Feng Wang, Yaodong Yu, Guoyizhe Wei, Wei Shao, Yuyin Zhou, Alan Yuille, and Cihang Xie. Scaling laws in patchification: An image is worth 50,176 tokens and more.arXiv preprint arXiv:2502.03738, 2025
arXiv 2025
-
[46]
Vit-5: Vision transformers for the mid-2020s.arXiv preprint arXiv:2602.08071, 2026
Feng Wang, Sucheng Ren, Tiezheng Zhang, Predrag Neskovic, Anand Bhattad, Cihang Xie, and Alan Yuille. Vit-5: Vision transformers for the mid-2020s.arXiv preprint arXiv:2602.08071, 2026
arXiv 2026
-
[47]
Resnet strikes back: An improved baseline in 2.5 lines of code, 2021
Ross Wightman, Hugo Touvron, and Herv´e J´egou. Resnet strikes back: An improved baseline in 2.5 lines of code, 2021
2021
-
[48]
Gated delta networks: Improving mamba2 with delta rule
Songlin Yang, Jan Kautz, and Ali Hatamizadeh. Gated delta networks: Improving mamba2 with delta rule. InInternational Conference on Learning Representations, volume 2025, pages 29687–29707, 2025
2025
-
[49]
Flashattention-4: Algorithm and kernel pipelining co-design for asymmetric hardware scaling,
Ted Zadouri, Markus Hoehnerbach, Jay Shah, Timmy Liu, Vijay Thakkar, and Tri Dao. Flashattention-4: Algorithm and kernel pipelining co-design for asymmetric hardware scaling,
-
[50]
Root mean square layer normalization
Biao Zhang and Rico Sennrich. Root mean square layer normalization. InAdvances in Neural Information Processing Systems, volume 32, 2019
2019
-
[51]
Squeeze-and-attention networks for semantic segmentation
Zilong Zhong, Zhong Qiu Lin, Rene Bidart, Xiaodan Hu, Ibrahim Ben Daya, Zhifeng Li, Wei- Shi Zheng, Jonathan Li, and Alexander Wong. Squeeze-and-attention networks for semantic segmentation. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), June 2020
2020
-
[52]
Vision Mamba: Efficient visual representation learning with bidirectional state space model
Lianghui Zhu, Bencheng Liao, Qian Zhang, Xinlong Wang, Wenyu Liu, and Xinggang Wang. Vision Mamba: Efficient visual representation learning with bidirectional state space model. arXiv preprint arXiv:2401.09417, 2024
Pith/arXiv arXiv 2024
-
[53]
Systems and Algorithms for Convolutional Multi-Hybrid Language Models at Scale,
Itamar Zimerman and Lior Wolf. Multi-dimensional Hyena for spatial inductive bias. In International Conference on Artificial Intelligence and Statistics (AISTATS), 2024. 15 A Appendix: Theory A.1 Gated Hyena Computes Separable Attention We show that a gated HyenaND layer computes exactly the class ofseparable attention matrices— attention patterns that fa...
arXiv 2024
-
[2026]
URLhttps://arxiv.org/abs/2603.05451
This paper was first reviewed by deepseek-v4-flash on August 3, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.