responsible-ai · 2026-06-13 · Tier 2

Risk Under Pressure: Compute-Aware Evaluation of Adversarial Robustness in Language Models

Risk Under Pressure: Compute-Aware Evaluation of Adversarial Robustness in Language Models

TL;DR. Jailbreak evaluations usually report attack success rate (ASR) at a fixed query budget, which silently treats a cheap template attack and an expensive gradient attack as equally costly. They are not; attack cost varies by orders of magnitude. This paper measures robustness in cumulative FLOPs (floating-point operations) as a proxy for attacker effort, introduces "risk-compute curves," and finds several non-obvious things: alignment training helps robustness non-monotonically, scaling model size blocks gradient attacks but not cheap template attacks, and safety-aligned RL raises average attack cost while leaving some harm categories disproportionately cheap to reach.

flowchart LR
  A[Attack strategy<br/>gradient / iterative / template] --> C[Measure cumulative<br/>FLOPs to succeed]
  C --> RC[Risk-compute curve<br/>compute budget to risk]
  RC --> M1[Avg pressure<br/>to jailbreak]
  RC --> M2[Per-category<br/>cost spread]
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  class A input
  class C decision
  class RC,M1,M2 output

What it is

A compute-aware robustness framework. Instead of "what fraction of attacks succeed in N queries," it asks "how much compute must an attacker burn to succeed," measured in FLOPs. The risk-compute curve maps a compute budget to attack risk; two summary metrics capture the average pressure a given attack needs.

Core novelty

Reframing robustness as an economic quantity. ASR-at-fixed-budget obscures whether an attack's cost justifies its payoff to the attacker. By putting compute on the x-axis, the framework reveals which defenses actually raise the attacker's bill and which only look good because the evaluation capped query count.

Key results

Across ten models (three families, four training/alignment stages), three attack strategies (gradient-based, iterative refinement, template-based), two jailbreak benchmarks:

  1. Alignment training has non-monotonic effects on compute-space robustness.
  2. Scaling model size cuts gradient-attack effectiveness but barely touches cheap template attacks.
  3. Gradient attacks optimized on a surrogate model transfer to a separate target, lowering attacker cost.
  4. Compute cost varies up to ~5x across harm categories within a single model.
  5. Safety-aligned RL raises aggregate cost but leaves some categories disproportionately accessible.

Gaps

FLOPs is a proxy for effort, but a real attacker optimizes dollars and wall-clock, which depend on hardware and parallelism, not just FLOPs. The framework measures cost-to-succeed but does not bound whether a model can be jailbroken at all, only how expensive it is. No frontier closed models in the panel.

How this relates to prior wiki knowledge

This is the right lens for the day's biggest story: the US government suspended Anthropic's Fable 5 and Mythos over a demonstrated jailbreak, and Anthropic's rebuttal was essentially economic, that the same capability "is widely available from other models" and the bypass was cheap and narrow. Risk-compute curves are the formal version of that argument. It also sharpens the N-days finding (06-09, Anthropic's Mythos turning patches into exploits in hours): the question is never "can it be done" but "how cheaply," and this paper makes that quantitative. Connects to responsible-ai.md.

Raw source: HuggingFace · arXiv 2606.11409