ReferenceStablesince v0.5.0

Warnings

Non-fatal warnings the library emits, what they mean, and when to escalate them to errors in CI.

Audience: All usersRead: 5 minEdit on GitHub

Categories

  • W01xx — Environment. Something about the runtime is unexpected but the run can proceed.
  • W02xx — Data. Dataset behaviour worth flagging (streaming, ordering).
  • W03xx — Hooks. Probes did something with side effects.
  • W04xx — Compilation. JIT / compile caches invalidated mid-run.
  • W05xx — Performance. Slow paths that will not fail a run but are worth investigating.
  • W06xx — Comparison. Numerical deltas that need interpretation.

Warning reference

CodeTitleEmitted when
W0101Environment mismatchYou loaded an artifact recorded on a different framework version.
W0203Streaming datasetThe dataset in use is streaming; fingerprint identifies the generator, not the rows.
W0311Writable hook installedA probe registered a writable hook; the run mutates the forward pass.
W0405Compile cache misstorch.compile recompiled during recording; the environment fingerprint changed mid-run.
W0512Slow chunkA single chunk took longer than 10× the median; likely a data-loader stall.
W0621, small deltaSmall numeric deltaA comparison found deltas below 1e-5; may be BLAS non-determinism, may be real drift.

Escalate in CI

Related