Paper: 2606.24851 Authors: Jason Sulskis, Sathya Ravi Categories: cs.LG

The Gap

Fourier Neural Operators (FNO) have become a standard tool for learning PDE solution operators by parameterizing global convolutions in the complex Fourier domain.
But for real-valued PDE solutions, the complex FFT stores redundant information through conjugate symmetry — half the spectrum is a mirror image.
Prior work took this inefficiency as a given; no one had systematically tested whether a purely real spectral basis could be better, and under what conditions.

The paper fills this gap by constructing an exact real-valued mirror of FNO (the Hartley Neural Operator, HNO) and establishing a theoretical criterion — Green’s function symmetry — that predicts which basis wins.

[FNO complex FFT] --> [conjugate redundancy for real PDEs] --> [waste?]
     |                                                              |
     v                                                              v
[Can we keep same params with real basis?] ------> [HNO: DHT replaces FFT, iso-parametric]
     |                                                              |
     v                                                              v
[Theory: Green's function alignment] ------> [elliptic: real diag. works]  [time-dep: need complex]
     |                                                              |
     +------------------ Experimental benchmarks -------------------+
                                 |
                                 v
[Match basis to operator symmetry: no universal winner]

The Increment

One sentence: Before this paper, researchers implicitly assumed complex Fourier bases are always appropriate for neural operators; after this paper, we know the best spectral basis is a property of the operator itself — elliptic operators align with real Hartley, time-dependent operators align with complex Fourier.

Core Mechanism

The Hartley Neural Operator (HNO) is structurally identical to FNO: it takes a function input, lifts it to a latent space, applies a spectral convolution layer (transformation → multiplication → inverse transformation), and projects to the output.
The only change is replacing the Fast Fourier Transform (FFT) with the Discrete Hartley Transform (DHT).

The DHT maps real-valued signals to a real-valued spectrum of the same length (no conjugate symmetry), so each spectral mode gets exactly one real multiplier.
FNO, by contrast, discards the redundant half of the spectrum (keeping only N/2+1 complex modes) and uses two real numbers per mode (real and imaginary parts).
Because HNO keeps twice as many frequency “bins” as FNO, but uses half as many parameters per bin, the total parameter count is identical — the two models are iso-parametric.

This means the comparison is purely about the spectral basis: real (Hartley) vs. complex (Fourier).
The core mechanism is that each spectral multiplier acts as a diagonal operator on the Green’s function of the PDE in the frequency domain.
For operators with real symmetric Green’s functions (e.g., Poisson, biharmonic), a real diagonal multiplier can exactly represent the solution, so HNO is favored.
For operators with phase-shifting Green’s functions (e.g., wave, advection), a complex multiplier is required to capture the rotation, so FNO is favored.

Input function f
      |
      v
Lift to latent dim (same for HNO and FNO)
      |
      v
Spectral transform:
    FNO: FFT --> complex spectrum (N/2+1 bins)
    HNO: DHT --> real spectrum (N bins)
      |
      v
Diagonal multiplier:
    FNO: complex mult = (a+ib)*x  (2 real ops per bin)
    HNO: real mult = w*x         (1 real op per bin)
      |
      v
Inverse transform:
    FNO: IFFT
    HNO: IDHT
      |
      v
Project to output u

Think of it like a tuner’s equalizer for audio signals.
FNO is a stereo equalizer with phase knobs — it can handle both magnitude and time delay (phase).
HNO is a monophonic equalizer — it only adjusts magnitude.
If the audio signal has no phase information (like a pure amplitude envelope), the monophonic EQ works perfectly and is simpler.
But if the signal carries phase shifts (like echoes), you need the stereo phase knobs.

The Green’s function of a PDE tells us what kind of “audio signal” the operator produces.
Elliptic operators produce signals where the response is symmetric and in-phase — monophonic works.
Wave and advection operators produce signals where the response lags or leads — stereo phase knobs are necessary.

Key Concepts

  • Green’s function symmetry: The Green’s function is the impulse response of a differential operator — what output you get when you apply a point source. For self-adjoint elliptic operators (Poisson, biharmonic), the Green’s function is real and symmetric: G(x, y) = G(y, x). This symmetry is diagonalized by a real spectral basis (the Hartley transform). For time-dependent operators (wave, advection), the Green’s function picks up a phase: G(x, t; y, ts) involves oscillations or transport that cannot be captured by a real diagonal multiplier alone.
    Concrete example: Poisson equation Δu = f has Green’s function G(x,y) = -1/(2π) ln|x-y| in 2D — real and symmetric. The wave equation □u = f has Green’s function involving Heaviside and D’Alembertian — contains phase information.

  • Phase content of an operator: How much the operator shifts the phase of frequency components. The wave equation introduces a frequency-dependent phase shift (ejωt), while the heat equation ∂u/∂t = κΔu has no phase shift — it only decays magnitudes. Advection shifts phases linearly with wavenumber. The more phase content, the harder it is for a real-diagonal basis to approximate the operator. This paper shows that heat equation sits exactly on the borderline: both bases perform equally.

Framework Shift

Before (mainstream approach):
  FNO architecture: FFT -> complex mult -> IFFT
  Philosophy: "Complex Fourier basis is the natural choice for PDEs"
  Hidden assumption: Half the spectrum thrown away (conj. sym.) is acceptable
  Evaluation: Compare FNO variants with different parameter counts, but never change basis alone

After (this paper):
  HNO architecture: DHT -> real mult -> IDHT (exact real mirror)
  Philosophy: "Best basis is operator-dependent; match basis to Green's function symmetry"
  Key insight: Iso-parametric comparison isolates basis choice
  Evaluation: Phase content as continuous criterion predicts performance ranking

From “one universal spectral basis” to “basis alignment with operator symmetry” — the core shift is recognizing the spectral basis as a hyperparameter that must match the intrinsic structure of the PDE.

Expert Assessment

Problem choice: Real gap. The redundancy in FNO’s complex spectrum was known but never exploited theoretically or empirically to decide which basis works when. This sits at the intersection of neural operator design and spectral theory of PDEs — a timely and clean question.

Method maturity: Clever, not brute force. The iso-parametric construction is elegant: by keeping parameter count identical, the authors isolate the sole variable (spectral basis). The Green’s function alignment theory is a simple but powerful lens. One could argue that a simpler “try both and pick” approach already existed, but this paper provides a *predictive rule, which is more valuable.

Experimental integrity: Baselines are fair — same architecture, same training, same random seeds. The PDE suite is diverse: Poisson, biharmonic (elliptic); heat, wave, advection, Burgers, Navier-Stokes (time-dependent). One red flag: no comparison with other neural operator families (e.g., DeepONet, attention-based operators). But the paper’s scope is explicitly about FNO-family, so it’s defensible.

Writing quality: Clear and logical. The abstract is dense but communicates the core message. The “elliptic-vs-time-dependent split” is well motivated. The weakest section is the discussion of phase quantification — the metric “operator phase content” is intuitive but not precisely defined. A rewritten section with a concrete phase measure (e.g., imaginary part of Green’s function in frequency) would strengthen the paper.

Verdict: strong accept — delivers a predictive rule, cleanly designed experiments, and a clear theoretical lens that can guide future neural operator design.

Takeaways

  1. For practitioners choosing a neural operator: test the PDE’s Green’s function symmetry. If your operator is elliptic (Poisson, elasticity, etc.), try HNO — it may outperform FNO with no additional cost. If your operator has explicit time dependence (wave, convection, etc.), stick with FNO or consider complex-valued architectures.
  2. For architecture designers: iso-parametric comparisons are underused. Many neural operator papers add complexity without controlling for capacity. This paper shows how to isolate one design choice fairly.
  3. For theorists: the diagonalization perspective (spectral multiplier ≈ Green’s function diagonal in frequency) offers a bridge between neural operators and classical potential theory. The concept of “phase content” as a continuous axis might unify other operator classes beyond elliptic/time-dependent.

论文: 2606.24851 作者: Jason Sulskis, Sathya Ravi 分类: cs.LG

缺口

Fourier神经算子(FNO)通过在复傅里叶域参数化全局卷积,已成为学习PDE解算子的标准工具。
但对于实值PDE解,复FFT通过共轭对称存储了冗余信息——一半谱是镜像。
既有工作将此浪费视为当然;没有人系统测试过纯实谱基是否更好,以及在什么条件下更好。

本文通过构造FNO的精确实值镜像(Hartley神经算子,HNO)填补了这一空白,并建立了理论判据——格林函数对称性——可预测哪种基占优。

[FNO 复FFT] --> [实PDE的共轭冗余] --> [浪费?]
     |                                       |
     v                                       v
[能否用等参数的实基?] ------> [HNO: DHT替换FFT, 参数相同]
     |                                       |
     v                                       v
[理论: 格林函数对齐] ------> [椭圆: 实对角可行]  [时间依赖: 需复基]
     |                                       |
     +--------------- 实验基准 ---------------+
                                 |
                                 v
[匹配基与算子对称性: 无普适赢家]

增量

一句话: 这篇论文之前,研究者隐式假设复傅里叶基始终适用于神经算子;这篇论文之后,我们知道最佳谱基是算子本身的属性——椭圆算子与实Hartley基对齐,时间依赖算子与复Fourier基对齐。

核心机制

Hartley神经算子(HNO)在结构上与FNO完全相同:输入函数,升维到隐空间,应用谱卷积层(变换→乘子→逆变换),投影到输出。
唯一的改变是将快速傅里叶变换(FFT)替换为离散Hartley变换(DHT)。

DHT将实值信号映射到相同长度的实值谱(无共轭对称),因此每个谱模式恰好获得一个实数乘子。
相比之下,FNO丢弃冗余的一半谱(只保留N/2+1个复模式),每个模式使用两个实数(实部和虚部)。
因为HNO保留的频率“箱子”数量是FNO的两倍,但每个箱子使用的参数只有一半,所以总参数数完全相同——两个模型是等参数的。

这意味着比较纯是关于谱基:实(Hartley) vs 复(Fourier)。
其核心机制是:每个谱乘子作为PDE格林函数在频域的对角算子。
对于具有实对称格林函数的算子(如泊松、双调和),实对角乘子可以精确表示解,因此HNO占优。
对于具有移相格林函数的算子(如波动、对流),需要复乘子来捕捉旋转,因此FNO占优。

输入函数 f
      |
      v
升维到隐维度(HNO和FNO相同)
      |
      v
谱变换:
    FNO: FFT --> 复谱 (N/2+1 bins)
    HNO: DHT --> 实谱 (N bins)
      |
      v
对角乘子:
    FNO: 复乘 = (a+ib)*x  (每个bin 2个实操作)
    HNO: 实乘 = w*x         (每个bin 1个实操作)
      |
      v
逆变换:
    FNO: IFFT
    HNO: IDHT
      |
      v
投影到输出 u

可以把这想象成调音师的均衡器
FNO是带相位旋钮的立体声均衡器——能同时处理幅度和时延(相位)。
HNO是单声道均衡器——只调整幅度。
如果音频信号没有相位信息(如纯幅度包络),单声道均衡器完美工作且更简洁。
但如果信号携带相移(如回音),就需要立体声相位旋钮。

PDE的格林函数告诉我们该算子产生什么样的“音频信号”。
椭圆算子产生的响应是对称且同相的——单声道足够。
波动和对流算子产生的响应有滞后或超前——立体声相位旋钮是必需的。

关键概念

  • 格林函数对称性: 格林函数是微分算子的脉冲响应——施加点源时得到的输出。对于自伴椭圆算子(泊松、双调和),格林函数是实对称的:G(x, y) = G(y, x)。这种对称性可以被实谱基(Hartley变换)对角化。对于时间依赖算子(波动、对流),格林函数获得相位:G(x, t; y, ts) 涉及振荡或输运,不能用实对角乘子单独表示。
    具体例子:泊松方程 Δu = f 的格林函数在2D中是 G(x,y) = -1/(2π) ln|x-y| ——实且对称。波动方程 □u = f 的格林函数涉及Heaviside和达朗贝尔算子——包含相位信息。

  • 算子的相位含量: 算子对频率分量进行相移的程度。波动方程引入频率依赖的相移(e^(jωt)),而热方程 ∂u/∂t = κΔu 没有相移——只衰减幅度。对流随波数线性移动相位。相位含量越多,实对角基越难近似该算子。本文表明热方程恰好位于边界线上:两种基表现相当。

框架转变

之前(主流方法):
  FNO结构: FFT -> 复乘 -> IFFT
  哲学: "复Fourier基是PDE的自然选择"
  隐藏假设: 丢弃一半谱(共轭对称)是可接受的
  评估: 比较不同参数量的FNO变体,但从未单独改变基

之后(本文方法):
  HNO结构: DHT -> 实乘 -> IDHT (精确实镜像)
  哲学: "最佳基依赖于算子; 将基与格林函数对称性对齐"
  关键洞见: 等参数比较隔离了基选择
  评估: 相位含量作为连续判据预测性能排序

从“通用谱基”到“基与算子对称性对齐”——核心转变是认识到谱基是一个超参数,必须与PDE的内在结构相匹配。

专家评审

选题眼光: 真缺口。FNO复谱的冗余已知,但从未被系统利用或理论解释何时用实基更好。这位于神经算子设计和PDE谱理论的交叉点——一个及时且干净的问题。

方法成熟度: 巧劲,非蛮力。等参数构造很优雅:通过保持参数数相同,作者隔离了唯一的变量(谱基)。格林函数对齐理论是一个简单但强大的透镜。有人可能认为“两种都试试再选”的方法更简单,但本文提供了**可预测的*规则,更有价值。

实验诚意: 基线公平——相同架构、相同训练、相同随机种子。PDE套件多样:泊松、双调和(椭圆);热、波动、对流、Burgers、Navier-Stokes(时间依赖)。一个值得警惕之处:未与其他神经算子族(如DeepONet、基于注意力的算子)比较。但论文范围明确限定在FNO族内,所以可以辩护。

写作功力: 清晰且有逻辑。摘要密集但传达了核心信息。“椭圆 vs 时间依赖”的分裂动机明确。最薄弱的部分是相位含量的讨论——指标“算子相位含量”在直觉上可行但未精确定义。如果重写一段,增加具体的相位度量(例如在频域的格林函数虚部)会提升论文档次。

判决: 强接收——提供了一个可预测的规则、设计干净的实验、以及一个清晰的理论视角,可指导未来的神经算子设计。

要点总结

  1. 对于实践者在选择神经算子时: 测试PDE的格林函数对称性。如果你的算子是椭圆的(泊松、弹性等),尝试HNO——它可能以零额外成本超越FNO。如果算子显式时间依赖(波动、对流等),坚持用FNO或考虑复值架构。
  2. 对于架构设计者: 等参数比较被低估了。许多神经算子论文在增加复杂度时不控制容量。本文展示了如何公正地隔离一个设计选择。
  3. 对于理论家: 对角化视角(谱乘子 ≈ 格林函数在频域的对角)在神经算子和经典势论之间架起桥梁。“相位含量”作为连续轴可能统一椭圆/时间依赖之外的其他算子类别。

Note: The MDX escaping for curly braces was unnecessary in the final output because no mathematical sets with braces appeared in the text. If such notation were needed (e.g., {1,…,n}), escaping would be applied. The current response is safe for MDX parsing.