Modeling Spatially Correlated Failure-time Data Under Two Distance Functions with an Application to Titan GPU Data

TL;DR

A Bayesian two-distance AFT model captures Titan GPU failure times via physical and logical spatial random effects.

stat.AP 🔴 Advanced 2025-09-06 38 views
Jared M. Clark Jie Min Yueyao Wang Yili Hong George Ostrouchov
spatial survival analysis accelerated failure-time model GPU reliability dual random effects Stan MCMC

Key Findings

Methodology

The paper extends the AFT model to y=Xβ+Z_vv+Z_ww+ϵ, where v captures physical-location dependence and w captures logical-topology dependence. Physical correlation uses Euclidean-like row/column distances on the 8×25 cabinet layout; logical correlation uses torus/circle distances induced by Titan's folded torus network. A powered exponential kernel is used throughout, and inference is performed in Stan via MCMC.

Key Results

  • Theorem 1 proves that the logical correlation matrix on the torus is positive definite when 0<κ_w≤1, and the proof exploits a separable structure R_w=B⊗A. This is the paper's main theoretical guarantee.
  • Simulation studies validate the framework's inferential accuracy, showing that the proposed dual-spatial-effect model can recover parameters reliably for censored failure-time data under the designed correlation structures.
  • The Titan application demonstrates scalability to a real HPC system with 30,000+ GPUs, 200 unique cabinet locations, a 7-year service period, and 12 fixed-effect columns for cage/slot/node, all analyzed within one Bayesian survival model.

Significance

This work moves spatial survival analysis beyond the standard “one distance, one correlation” paradigm. For engineering systems such as supercomputers, datacenters, and networked hardware, physical proximity and communication topology are different mechanisms, yet both can shape failure dependence. The paper provides a statistically principled way to disentangle them, improving interpretability for reliability engineering, thermal management, and operational planning.

Technical Contribution

The technical contributions are threefold: first, a mixed-effects AFT formulation with two independent Gaussian spatial random effects, v and w; second, a novel separable torus correlation construction for logical cabling patterns, extending powered exponential ideas to a folded-torus geometry; third, a rigorous positive-definiteness proof that makes the logical covariance matrix usable in practice. The Stan implementation makes the method immediately applicable to large censored datasets.

Novelty

The key novelty is not merely adding another spatial term, but explicitly modeling two distinct distance functions for two distinct physical mechanisms. Compared with prior CAR-based or single-distance spatial survival models, this paper is the first in the excerpt to formalize Titan's logical layout as torus distance and to prove a valid covariance structure for it.

Limitations

  • The model assumes independence between the physical effect v and the logical effect w. If heat, workload placement, and network routing interact in reality, this assumption may understate cross-mechanism dependence and reduce fidelity in highly coupled systems.
  • The excerpt reports simulation validation and a Titan case study, but it does not provide numerical coefficient tables, credible intervals, or predictive scores. As a result, the practical gain over single-distance baselines cannot be quantified from the provided text alone.

Future Work

Future directions include extending the framework to joint spatiotemporal survival models, heavy-tailed or non-Gaussian failure-time distributions, and competing risks, as well as relaxing the independence assumption between physical and logical spatial effects. Broader validation on other HPC architectures and topology-aware infrastructures would test generality.

AI Executive Summary

Titan-class supercomputers break a key assumption behind many spatial survival models: closeness is not only physical. GPUs may sit near each other in the server room, sharing heat and airflow, yet also be neighbors in a folded torus network that governs communication and scheduling. The paper argues that failure-time dependence in such systems is governed by both maps at once, so a single distance function can miss part of the story.

To address this, the authors build a dual-spatial mixed-effects accelerated failure-time model, y=Xβ+Z_vv+Z_ww+ϵ. One random effect, v, captures dependence across the 8×25 physical cabinet grid; the other, w, captures dependence induced by logical connections on a torus. Both use powered exponential correlation structures, but the logical component is defined with circle distances on a torus. The model is fit in a Bayesian framework using Stan and MCMC, making it suitable for censored failure-time data.

The paper's conceptual advance is subtle but important: it separates “where a GPU lives” from “who it talks to.” That distinction is essential in Titan, where more than 30,000 GPUs were organized across 200 cabinet locations over a 7-year service period. The authors also prove that their torus-based correlation matrix is positive definite when 0<κ_w≤1, with a separable B⊗A structure, turning a complicated topology into something statistically well-behaved and computable.

Deep Analysis

Background

Spatially correlated survival analysis has a substantial literature, including spatial frailty Cox models (Henderson, Shimakura, and Gorst 2002), CAR-based AFT models (Zhang and Lawson 2011), and general spatial survival frameworks for arbitrarily censored data (Zhou and Hanson 2018). Most methods, however, assume a single source of spatial dependence driven by physical distance. HPC systems such as Titan violate this simplification because geometry and network topology are both relevant, making dual-structure modeling necessary.

Core Problem

The core problem is to model censored failure times when dependence arises from two incompatible notions of proximity: cabinet layout in physical space and folded-torus connectivity in logical space. A valid model must estimate regression effects, capture both correlation sources, remain positive definite, and scale to tens of thousands of GPUs. The challenge is mathematical, statistical, and computational at once.

Innovation

The first innovation is the two-random-effect AFT representation y=Xβ+Z_vv+Z_ww+ϵ, which isolates physical and logical dependence rather than merging them into one frailty term. The second is a torus-aware powered exponential correlation for the logical network, using min(|a-b|, n-|a-b|) distances in rows and columns. The third is the positive-definiteness proof via a Kronecker decomposition B⊗A, which turns a topology-specific construction into a valid covariance model for Bayesian inference.

Methodology

  • �� Data model: observed times t_i with censoring indicators δ_i; responses are analyzed on the log scale as y=log(\tilde t).
  • �� Fixed effects: X includes an intercept plus cage, slot, and node indicators; Titan uses 12 non-baseline columns with cage 3, slot 8, and node 4 as references.
  • �� Physical structure: cabinets are indexed on an 8-row × 25-column grid; physical distances use absolute row/column differences d^P_r, d^P_c.
  • �� Logical structure: cabinets are relabeled according to folded-torus connectivity; logical distances use wrap-around minima d^L_r, d^L_c.
  • �� Correlation: powered exponential kernels define ρ_P and ρ_L with shape parameters κ_v (0<κ_v≤2) and κ_w (0<κ_w≤1).
  • �� Covariance assembly: Σ=Z_vΣ_vZ_v^T+Z_wΣ_wZ_w^T+Σ_ϵ, assuming v and w are independent.
  • �� Inference: Bayesian estimation is recommended; Stan produces MCMC draws for parameters and uncertainty quantification.
  • �� Theory: on the torus, the logical correlation matrix R_w is proven positive definite by sorting points, forming circle-wise matrices A and B, then using the eigenvalues of B⊗A.

Experiments

The paper uses two experimental modes. First, simulation studies assess whether the dual-distance model can recover parameters and deliver accurate inference under controlled settings; the abstract states that the simulation demonstrates statistical accuracy. Second, the Titan GPU dataset provides a large real-world benchmark: more than 30,000 GPUs, arranged in an 8×25 cabinet grid, observed over 7 years, with 200 unique spatial locations. The model incorporates cabinet-level cage/slot/node indicators and is estimated with Stan-based MCMC. The excerpt does not report the full numerical tables, but it clearly frames both validation and application.

Results

The strongest result is theoretical: the logical torus covariance is valid under 0<κ_w≤1, and the separable form R_w=B⊗A ensures positive definiteness by standard Kronecker eigenvalue arguments. Empirically, the simulation study confirms that the framework can perform accurate statistical inference for spatially correlated failure-time data. In the Titan application, the method is able to operate on a massive censored dataset with 30,000+ GPUs and 200 locations, demonstrating that the model is not only mathematically sound but also practically scalable.

Applications

Immediate use cases include supercomputer reliability analysis, thermal-risk mapping in datacenters, and failure prediction for any hardware system with both physical placement and communication topology. Practitioners need event times, censoring status, physical coordinates, and network layout. The output can guide replacement schedules, cooling design, rack placement, and topology-aware job scheduling.

Limitations & Outlook

A key limitation is the independence assumption between v and w; in real systems, thermal effects and network workload may interact. Another limitation is topology specificity: the torus-distance construction is tailored to folded-torus architectures and may need redesign for irregular or dynamically reconfigured networks. Finally, the excerpt lacks reported numerical coefficients and predictive benchmarks for Titan, making direct performance comparison impossible from the provided text alone.

Plain Language Accessible to non-experts

Imagine a school where some students sit close together in the classroom, and some are also connected by a hidden club network. If one student gets stressed, the effect might spread because they are sitting nearby, or because they belong to the same club and coordinate a lot. Titan GPUs are like that. Some fail together because they are physically near the hottest spots, and some fail together because they are connected in the computer network. The paper builds one model that listens to both maps at the same time, so it can tell the difference between “near in the room” and “near in the network.”

ELI14 Explained like you're 14

Think of Titan GPUs like teammates in a huge game lobby. Some are close on the map, so they feel the same heat and environment. Others are connected through the same communication routes, like being in the same Discord server or squad, so problems can spread that way too. If you only look at one kind of closeness, you might miss half the story!

This paper’s idea is super smart: it gives each GPU two scores for “how connected” it is to others. One score comes from real-world placement in the server room. The other comes from the network layout, which wraps around like a donut so the edges connect too. Pretty cool, right?

Then the authors plug both scores into a failure-time model, which is basically a way to ask: “What makes this GPU last longer or fail sooner?” They also use Stan, a program that helps the computer test lots of possibilities and find the most believable answer.

So the big takeaway is: if a giant machine has two kinds of neighborhood, you should not pretend there is only one. This paper shows how to be honest about both, and that makes the predictions smarter and more useful!

Glossary

Accelerated Failure-Time (AFT) model

A survival model that explains how covariates stretch or shrink the time until failure. In this paper, the log failure time is modeled directly, which makes it natural for regression with censoring.

The paper's main response model is a dual-spatial AFT mixed-effects model.

Random effects

Latent terms that capture shared variation not explained by observed covariates. Here they represent unmeasured dependence from physical layout (v) and logical connectivity (w).

They appear as Z_vv and Z_ww in the linear predictor.

Powered exponential correlation

A flexible covariance family with tunable range and shape parameters. It controls how quickly dependence decays with distance and is used for both the physical and logical components.

The paper uses it to define ρ_P and ρ_L.

Torus distance

A wrap-around distance where moving past one edge brings you to the opposite edge, like on a donut-shaped surface. This is the right geometry for Titan's folded-torus network.

It is used to define logical distances in rows and columns.

Stan / MCMC

Stan is software for Bayesian computation, and MCMC is the sampling engine that approximates posterior distributions. Together they estimate model parameters and uncertainty.

The authors recommend Stan for inference under their model.

Open Questions Unanswered questions from this research

  • 1 The paper validates the framework, but the excerpt does not tell us how sensitive results are to misspecification of the logical topology or to violations of independence between physical and logical effects. That remains important for real systems with changing network routes.
  • 2 It is still unclear how much predictive gain comes from the second distance function over a simpler one-distance model on Titan. Full benchmark tables, posterior summaries, and out-of-sample comparisons would be needed to answer that convincingly.

Applications

Immediate Applications

HPC reliability monitoring

Operators can use the model to locate high-risk cabinet regions and detect whether failures are driven more by heat exposure or by network adjacency, helping prioritize maintenance and cooling.

Topology-aware failure analytics

Any infrastructure with both physical placement and logical wiring can adopt the framework, including datacenters and telecom racks, provided failure times and layout information are available.

Long-term Vision

Unified multi-mechanism survival modeling

A broader vision is a general Bayesian platform that jointly models physical, logical, temporal, and competing-risk effects, becoming a standard tool for complex engineered systems.

Abstract

One common approach to statistical analysis of spatially correlated data relies on defining a correlation structure based solely on unknown parameters and the physical distance between the locations of observed values. However, some data have a complex spatial structure that cannot be adequately described with the physical distance alone. In this work, the spatial failure-time data of focus contains information on GPUs that are connected through a network fabric topology that differs from their physical layout and that is expected to introduce additional correlations. The proposed lifetime regression model includes random effects capturing the dependency due to physical location as well as random effects explaining the dependency due to logical connections between GPUs. The analysis of this GPU dataset serves as an example of models with multiple spatial random effects and the ideas presented can be extended to other applications with complex spatial structures. A Bayesian modeling scheme is recommended for this class of analyses. The examples in this work use the software package, Stan, to produce Markov chain Monte Carlo draws for parameter estimation. This modeling effort is validated through simulation which demonstrates accuracy in statistical inference. We also apply the developed framework to the large-scale Titan GPU failure time data.

stat.AP