Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

TrainParity

CI PyPI Python 3.11 License: MIT

TrainParity checks user-declared equivalence across PyTorch resume, gradient-accumulation, and finite sample-ID executions. It returns PASS, FAIL, ABSTAIN, or ERROR and locates the first observed divergence; it is not a universal bug detector and does not invoke an LLM at runtime.

Install and run

TrainParity is currently alpha-quality software. Version 0.1.0rc2 is a prerelease of 0.1.0. Install the exact release candidate with:

pip install trainparity==0.1.0rc2

CPU-only users should install a validated PyTorch CPU wheel first so that pip does not resolve the default CUDA wheel and its runtime packages:

python -m pip install torch==2.7.0 --index-url https://download.pytorch.org/whl/cpu
python -m pip install trainparity==0.1.0rc2

Package metadata still permits torch>=2.7,<2.14; the explicitly validated versions are listed under Compatibility and security.

CI executes the pytest integration and all three quickstart commands. The quickstarts run against the built wheel from outside the repository directory.

A complete integration

The following compact pytest case audits stable IDs emitted by a real PyTorch DataLoader. The clean loader passes; the faulty loader repeats ID 1 and omits ID 2. The file is examples/test_readme_case.py, and CI executes the command shown below.

from dataclasses import dataclass

import torch
from torch.utils.data import DataLoader, TensorDataset

from trainparity import ExactlyOnce, Outcome
from trainparity.api import SampleCoverageResult, audit_rank_iterables


@dataclass(frozen=True)
class CoverageCase:
    sample_ids: tuple[int, ...]
    expected_ids: tuple[int, ...] = (0, 1, 2, 3)

    @staticmethod
    def extract(batch: list[torch.Tensor]) -> list[int]:
        return [int(value) for value in batch[0]]

    def run(self) -> SampleCoverageResult:
        dataset = TensorDataset(torch.tensor(self.sample_ids))
        loader = DataLoader(dataset, batch_size=2, shuffle=False)
        return audit_rank_iterables(
            {0: loader},
            sample_id_extractor=self.extract,
            policy=ExactlyOnce(self.expected_ids),
        )


def test_clean_loader_passes() -> None:
    assert CoverageCase((0, 1, 2, 3)).run().outcome is Outcome.PASS


def test_duplicate_loader_reports_first_observed_path() -> None:
    result = CoverageCase((0, 1, 1, 3)).run()
    assert result.outcome is Outcome.FAIL
    assert result.first_violation is not None
    assert result.first_violation.path == "coverage.same_rank_duplicate"

From a fresh source checkout, install the development extra before running the example. It includes pytest-cov, which supplies the coverage options used by the repository-wide pytest configuration:

python -m pip install -e ".[dev]"
python -m pytest -q --no-cov examples/test_readme_case.py

Representative first-observed-divergence output:

{
  "outcome": "FAIL",
  "first_violation": {
    "kind": "same_rank_duplicate",
    "path": "coverage.same_rank_duplicate",
    "sample_id": 1,
    "rank": 0,
    "epoch": 0,
    "position": 2
  },
  "schema_version": 1,
  "trainparity_version": "0.1.0rc2"
}

This is the first observed policy violation, not a root-cause claim.

Installed quickstarts

The installed CPU quickstarts each emit one clean PASS and one intentional FAIL:

python -m trainparity.quickstarts.resume
python -m trainparity.quickstarts.accumulation
python -m trainparity.quickstarts.sample_coverage

Reproducible validation suite

This matrix summarizes the project's pinned, reproducible validation suite. It is not a universal detection rate and does not establish correctness for untested projects, devices, or training semantics.

Surface Clean controls Deliberate faults / cases Boundary exercised
Resume reference fixtures 6/6 PASS 13/13 detected with expected first component Fresh process; CPU and same-device A100
External resume integrations 3/3 PASS 3/3 detected Original checkpoint paths; ImageNet, nanoGPT, Ignite; L40S
Accumulation equivalence 3 CPU + 1 GPU PASS 8/8 detected Fresh processes; explicit phases; same-device L40S
Sample coverage 17/17 expected outcomes world sizes 1/2/3/4 and finite sampler edge cases CPU; finite declared windows

Exact commits, environments, outcomes, and limitations are in validation. The external-project results used tiny fixtures; they are evidence about those cases, not a framework-compatibility promise.

What it checks

  • Resume equivalence compares a continuous execution with save, real exit, fresh-process load, and resumed execution through the project's checkpoint semantics.
  • Accumulation equivalence compares a declared full-batch execution with a declared microbatch plan at bounded loss-accounting, gradient, optimizer/parameter, and scheduler phases.
  • Sample coverage evaluates only explicit exactly_once, at_least_once, no_cross_rank_overlap, or expected_padding policies over stable sample IDs in a finite observation window.

The four outcomes are intentionally distinct:

  • PASS: the declared observations satisfied the comparison or policy.
  • FAIL: an observed difference or policy violation was found.
  • ABSTAIN: required evidence was unavailable or ambiguous, such as an unknown expected universe for exactly-once coverage.
  • ERROR: execution or observation could not complete.

ExactComparison and user-configured ToleranceComparison remain separate. TrainParity does not infer or tune a tolerance from observed results.

User contract

Resume and accumulation checks require a small importable case that states project semantics: how to execute, locate/load a checkpoint or construct one optimizer-update boundary, and expose the required state. TrainParity owns generic fresh-process orchestration and deterministic reporting; it does not rewrite a training loop or provide framework-specific adapters. See the public API, design, and shipped quickstart modules.

Coverage users provide stable sample IDs. An ID must be semantically unique within the declared expected universe: two different semantic samples must not share it. TrainParity validates ID trajectories, not sample contents. Worker provenance is optional and unavailable worker information is represented by None / JSON null, never worker 0. One audit proves only one finite observation window—the declared window; it does not prove sample contents, infinite-stream exactly-once behavior, or general shuffle quality.

What it does not do

TrainParity does not diagnose arbitrary scripts, infer root causes, judge model quality, launch distributed jobs, manage checkpoints, or provide Lightning, Transformers, DeepSpeed, DDP, FSDP, dashboard, service, registry, or runtime agent integration. It does not claim that all full-batch and microbatch executions should be equivalent; the user declares the relation and any tolerance.

Implementation provenance and the separation between assisted development and deterministic runtime behavior are documented in development provenance.

TrainCheck infers and checks training invariants using reference and target traces. TrainParity performs explicit A/B differential tests over user-declared equivalence relations and fresh-process boundaries. Neither structural approach makes the other a universal detector. The scoped comparison and cited upstream material are in comparison with TrainCheck.

Compatibility and security

Package metadata permits torch>=2.7,<2.14. The release validation matrix explicitly tested the installed CPU wheel on CPython 3.11 with PyTorch 2.7.0, 2.10.0, and 2.13.0. Intermediate PyTorch versions in the declared range are installable but were not independently validated. Same-device GPU evidence uses PyTorch 2.7.0 on the exact CUDA/GPU fixtures listed in validation. No support is implied outside this declared and tested scope.

TrainParity is not a sandbox. User training code runs with the caller's permissions; load only trusted checkpoints and do not execute untrusted repositories. Explicit child environment values are propagated when requested but are not recorded in reports by default. See SECURITY.md.

Known constraints and non-claims are collected in limitations. Contributions should follow CONTRIBUTING.md. This project is MIT licensed.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trainparity-0.1.0rc2.tar.gz (104.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trainparity-0.1.0rc2-py3-none-any.whl (48.1 kB view details)

Uploaded Python 3

File details

Details for the file trainparity-0.1.0rc2.tar.gz.

File metadata

  • Download URL: trainparity-0.1.0rc2.tar.gz
  • Upload date:
  • Size: 104.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for trainparity-0.1.0rc2.tar.gz
Algorithm Hash digest
SHA256 fee4b5d926c56b3950a400b0f2bc12c6263ac98db2c7864aef9a0d6803b5655f
MD5 b6b70f012daf03b1f83207121fe5c8ab
BLAKE2b-256 8d005578c0078e5946cdaf6b9b07b2fffd0a589d54f6072abab9c54dfb8731f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for trainparity-0.1.0rc2.tar.gz:

Publisher: release.yml on intelland/TrainParity

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trainparity-0.1.0rc2-py3-none-any.whl.

File metadata

  • Download URL: trainparity-0.1.0rc2-py3-none-any.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for trainparity-0.1.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 9bd206be2c3504f7d7335c66d7d378314fc4a5008c7dc2030c9a1ee261123e9e
MD5 ff2a94681a91e92319668abd5f0e5288
BLAKE2b-256 1b92c3ed0fe97da0568add7738dcd5d5bab022933fd69811b5b0954661a50093

See more details on using hashes here.

Provenance

The following attestation bundles were made for trainparity-0.1.0rc2-py3-none-any.whl:

Publisher: release.yml on intelland/TrainParity

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.0

2 files

This release

0.1.0rc2 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page