Research
Can You Hear Me Now? A Benchmark for Long-Range Graph Propagation
Overview Research area: Graph machine learning — specifically benchmarking graph neural networks (GNNs) on tasks that require propagating information over many hops in a graph. Technical level: Interm
- arXiv
- 2512.17762
- Published
- 2025-12-19
- Authors
- Luca Miglior, Matteo Tolloso, Alessio Gravina, Davide Bacciu
AI summary
Overview
- Research area: Graph machine learning — specifically benchmarking graph neural networks (GNNs) on tasks that require propagating information over many hops in a graph.
- Technical level: Intermediate. The paper assumes familiarity with GNN concepts such as message passing, over-smoothing, and over-squashing, but the task descriptions and results are readable without deep theoretical background.
- Scope: The paper introduces ECHO (Evaluating Communication over long HOps), a benchmark of three synthetic graph-property tasks and two real-world molecular-property tasks, and reports baseline results for eleven GNN architectures on those tasks.
What This Paper Is About
GNNs mostly work by passing messages between directly connected nodes, which makes it hard for information to travel across long distances in a graph. Existing benchmarks for this problem are limited by small graphs, short required propagation ranges, or tasks that are actually solvable using only local structure.
The authors build ECHO to test long-range propagation directly, with tasks whose correct answers depend on information spread across the whole graph, spanning propagation ranges of 17 to 40 hops.
Key Contributions
- A new benchmark with five tasks. ECHO combines three synthetic tasks (ECHO-Synth) and two real-world chemistry tasks (ECHO-Chem), designed specifically for long-range graph propagation rather than only for over-smoothing or over-squashing.
- ECHO-Synth: algorithmically constructed graph tasks. The synthetic suite predicts single-source shortest paths (sssp), node eccentricity (ecc), and graph diameter (diam) across six topology families, for a total of 10,080 graphs (70 graphs × 24 diameter values × 6 topologies).
- ECHO-Chem: quantum-grounded molecular datasets. ECHO-Charge (approximately 170,000 molecular graphs) targets atomic partial charge prediction and ECHO-Energy (approximately 196,000 molecular graphs) targets total molecular energy prediction. Both use density functional theory (DFT) reference computations, which the authors report required approximately 2 months of parallel DFT computation on their hardware configuration.
- Extensive baselines and analysis. The authors benchmark eleven architectures with a standardized backbone, a shared training protocol, Bayesian hyperparameter optimization over 100 trials per model-dataset pair, and four independent runs with different random seeds, plus analyses of neighborhood radius, graph diameter, and readout depth.
Main Findings
- Global attention helps most on the synthetic tasks. GRIT achieves the lowest MAE on the sssp task (0.121 ± 0.013) and on the diam task (1.014 ± 0.046), suggesting that attention over non-adjacent node pairs mitigates the limits of purely local message passing. Appendix J reports that the highest attention scores are often assigned to node pairs that are not directly connected and are far apart.
- Multi-hop propagation wins on eccentricity. DRew attains the lowest MAE on the ecc task (4.651 ± 0.020), which the authors attribute to its ability to address topological bottlenecks.
- Non-dissipative and port-Hamiltonian models are consistently strong on ECHO-Synth. SWAN (diam 1.121 ± 0.070; ecc 4.840 ± 0.045; sssp 0.896 ± 0.232), A-DGN (diam 1.151 ± 0.038; ecc 4.981 ± 0.037; sssp 1.176 ± 0.140), and PH-DGN (diam 1.627 ± 0.398; ecc 5.068 ± 0.126; sssp 1.323 ± 0.485) perform comparably well across the three tasks.
- Classical message passing lags. GCN records the highest MAE on diam (3.832 ± 0.262) and GIN reaches 2.234 ± 0.271 on sssp, indicating difficulty with tasks that require global information aggregation.
- Merely fixing over-smoothing is not enough. GraphCON, which targets over-smoothing, does not outperform traditional methods and is notably weaker than other members of the same architectural family (A-DGN, SWAN). On ECHO-Synth it records 2.969 ± 0.189 on diam, 5.474 ± 0.001 on ecc, and 5.734 ± 0.011 on sssp.
- GPS is best on molecular energy. On ECHO-Energy, GPS achieves the lowest MAE (5.257 ± 0.842), while GIN is the weakest at 47.851 ± 10.154 and GCN at 28.112 ± 1.239.
- SWAN is best on atomic charge prediction. On ECHO-Charge (values reported ×10⁻³), SWAN achieves 6.109 ± 0.103, followed by GPS at 6.182 ± 0.219 and A-DGN at 6.543 ± 0.146; GraphCON is the weakest at 19.629 ± 0.195.
- Error magnitude matters in chemistry. Although absolute errors are small, the authors state that deviations on the order of 10⁻⁴ e to 10⁻⁶ e can lead to significant downstream effects in molecular modeling, so models must reach that granularity to be chemically meaningful.
- Deeper networks outperform shallower ones. Additional experiments across neighborhood radius and graph diameter (Appendices G.1 and G.2) support the long-range nature of the benchmarks; readout depth (Appendix G.3) does not appear to change final performance.
- Qualitative charge-prediction comparison. A visualization of a test-set molecule compares GPS and GCN, showing GPS has consistently lower error, especially at peripheral atoms, while GCN accumulates errors at structurally distant or chemically sensitive sites.
Methodology in Plain English
The authors construct two families of tasks that cannot be solved by looking only at a node's immediate neighbors.
For the synthetic suite, they generate graphs in six shapes — line, ladder, grid, tree, caterpillar, and lobster — chosen so that information has to squeeze through narrow paths. The line graph is augmented with stochastic residual connections where each node has a 20% chance of linking to another node 2–6 hops away. The grid removes edges independently with 20% probability. The trees use preferential attachment, where a new node connects to an existing node with probability proportional to k_i^α with α = 3. Targets are the graph-theoretic quantities shortest path, eccentricity, and diameter. Each node gets a uniformly distributed random feature r ~ U(0,1) so models cannot rely on informative input features, and the sssp task adds a binary indicator marking the source node. Graphs have target diameters from 17 to 40, and for every topology and diameter combination the authors create 70 graphs, split 40 for training, 15 for validation, and 15 for testing.
For the chemistry suite, the authors start from ChEMBL SMILES strings for molecules satisfying the diameter constraint, generate 3D conformations using the Generalized Amber Force Field (GAFF), then run DFT calculations with the ORCA package to obtain accurate structures, partial charges, and molecular energies. Node features are the atomic number and spatial distance from the molecule's center of mass; edges carry bond type (single, double, triple, aromatic) and bond length. This geometric encoding is invariant under the E(3) group, so it respects rotational, reflectional, and translational symmetry. Splits are random uniform samples: 80/10/10 for ECHO-Charge and 90/5/5 for ECHO-Energy.
All baselines share a unified backbone of a linear embedding layer, a stack of GNN layers, and a task-specific readout (a two-layer MLP, with mean/max/sum aggregation for graph-level tasks). Training minimizes log₁₀ of the MSE loss with the Adam optimizer, early stopping with patience of 50 epochs, and a maximum of 1,000 epochs. Each model-dataset pair gets 100 Bayesian optimization trials with a Gaussian Process prior, and the best configuration is then validated across four seeds.
Why This Matters
Impact on research. The authors argue that LRGB performance has plateaued, that some of its tasks have been questioned as being inherently local, and that existing synthetic benchmarks use small graphs with limited diameters and focus narrowly on over-smoothing and over-squashing. ECHO provides targets with explicitly defined propagation ranges of 17 to 40 hops, so a model that underreaches can be identified rather than merely measured. The authors also position ECHO as complementary to the contemporaneous synthetic benchmark of Liang et al. (2025), which uses a single synthetic task on graphs up to 569k nodes, while ECHO offers five tasks aimed at balancing long-range complexity with usability.
Real-world applications (as framed by the paper):
- Drug design, where accurate atomic charge distributions and molecular energies support molecular modeling.
- Materials science, where molecular stability and energy predictions guide candidate selection.
- Understanding biological functions, where non-local electronic effects matter.
- Computational chemistry workflows, where fast predicted charges and energies could serve as cheap initializations for subsequent quantum mechanical simulations.
Industry relevance. The paper states that high-accuracy DFT simulations require several minutes per molecule and that generating the ECHO-Chem datasets cost approximately 2 months of parallel DFT computation on their hardware, illustrating the expense of the reference data. Faster and accurate prediction of charges and energies could accelerate exploration of large molecular spaces. The paper does not report deployment figures, cost savings, or industry partnerships.
Future Directions
- Closing the gap between attention-based and message-passing models. GPS and GRIT perform strongly on several tasks, but the authors note that this comes at increased computational complexity (Appendix I), raising the question of how to obtain those gains more cheaply.
- Design choices that actually enable long-range propagation. GraphCON's weak results suggest that mitigating over-smoothing alone is insufficient; identifying which architectural principles (multi-hop propagation, non-dissipative or port-Hamiltonian dynamics, global attention) are necessary remains an open question.
- Meeting chemical accuracy thresholds. The paper notes that deviations on the order of 10⁻⁴ e to 10⁻⁶ e matter for downstream modeling, while reported baseline errors remain larger — closing this gap is an explicit target for future models.
- Beyond the current topologies and tasks. The truncation of the provided content ends during the additional experiments section, so any further directions, conclusions, or limitations discussed later in the paper are not available in the supplied text.
Target Audience
Researchers and engineers working on GNN architectures, especially those developing methods for long-range propagation, over-squashing, or over-smoothing, and those who need a benchmark with controlled, explicitly long propagation ranges. It is also relevant to machine learning practitioners in computational chemistry and AI for science who want atom-level charge and molecular energy prediction tasks grounded in DFT reference data. Readers with no prior exposure to message passing will need introductory background to follow the architecture comparisons.
Note on the supplied text: The paper content provided is truncated mid-sentence in the "Additional Experiments and Analysis" section, so the conclusion, limitations, and any later appendices are not reflected in this summary. The dataset statistics appendix (E), quantum simulation details (C), computing platform (D), hyperparameter search space (F), the additional metrics tables (18, 19, 20), and further analyses in Appendix G.4 were referenced but not included in the content.
Authors’ abstract
Effectively capturing long-range interactions remains a fundamental yet unresolved challenge in graph neural network (GNN) research, critical for applications across diverse fields of science. To systematically address this, we introduce ECHO (Evaluating Communication over long HOps), a novel benchmark specifically designed to rigorously assess the capabilities of GNNs in handling very long-range graph propagation. ECHO includes three synthetic graph tasks, namely single-source shortest paths, node eccentricity, and graph diameter, each constructed over diverse and structurally challenging topologies intentionally designed to introduce significant information bottlenecks. ECHO also includes two real-world datasets, ECHO-Charge and ECHO-Energy, which define chemically grounded benchmarks for predicting atomic partial charges and molecular total energies, respectively, with reference computations obtained at the density functional theory (DFT) level. Both tasks inherently depend on capturing complex long-range molecular interactions. Our extensive benchmarking of popular GNN architectures reveals clear performance gaps, emphasizing the difficulty of true long-range propagation and highlighting design choices capable of overcoming inherent limitations. ECHO thereby sets a new standard for evaluating long-range information propagation, also providing a compelling example for its need in AI for science.