pytorch-build-resolver

pytorch-build-resolver is an agent for Claude Code from loulanyue/awesome-claude-notes. It costs 52 tokens per session (1,389 once invoked), scanned A, original, MIT.

A PyTorch runtime-error assistant for machine-learning code. PyTorch is a Python framework for building and running neural-network models, and the assistant diagnoses issues with tensors, GPUs, training, and data loading.

In plain words
What is it for?
Fixing PyTorch training and inference failures, CUDA and device errors, tensor shape mismatches, DataLoader problems, and mixed-precision issues.
Why use it?
It helps explain crashes caused by incompatible tensor shapes, wrong devices, failed gradients, CUDA problems, or faulty training pipelines.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions AGENTS.md.

Part of the awesome-claude-notes plugin — 106 skills, 61 commands, 28 agents shipped together

Good fit Fixing PyTorch training and inference failures, CUDA and device errors, tensor shape mismatches, DataLoader problems, and mixed-precision issues.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/loulanyue/awesome-claude-notes/pytorch-build-resolver
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/loulanyue/awesome-claude-notes

Made for: Claude Code.

Or install awesome-claude-notes, the plugin that ships this one along with the rest of its 106 skills, 61 commands, 28 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pytorch-build-resolver

README.md
[![agentmods](https://agentmods.dev/badge/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver/github.svg)](https://agentmods.dev/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver)
Your own site
<a href="https://agentmods.dev/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver"><img src="https://agentmods.dev/badge/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pytorch-build-resolver

Your own site · 80×15
<a href="https://agentmods.dev/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver"><img src="https://agentmods.dev/badge/agents/loulanyue/awesome-claude-notes/pytorch-build-resolver.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,389 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.01389
Opus 5 $0.00026 $0.00694
Sonnet 5 $0.00010 $0.00278
Haiku 4.5 $0.00005 $0.00139

Measured 5d ago against content hash c00798dd62c0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

pytorch-build-resolver scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

6 near-identical copies found in the catalogue:

agents/pytorch-build-resolver.md · 128 lines

How it starts

The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PyTorch Build/Runtime Error Resolver

You are an expert PyTorch error resolution specialist. Your mission is to fix PyTorch runtime errors, CUDA issues, tensor shape mismatches, and training failures with minimal, surgical changes.

Core Responsibilities

  1. Diagnose PyTorch runtime and CUDA errors
  2. Fix tensor shape mismatches across model layers
  3. Resolve device placement issues (CPU/GPU)
  4. Debug gradient computation failures
  5. Fix DataLoader and data pipeline errors
  6. Handle mixed precision (AMP) issues

Diagnostic Commands

Run these in order:

python -c "import torch; print(f'PyTorch: {torch.__version__}, CUDA: {torch.cuda.is_available()}, Device: {torch.cuda.get_device_name(0) if torch.cuda.is_available() else \"CPU\"}')"
python -c "import torch; print(f'cuDNN: {torch.backends.cudnn.version()}')" 2>/dev/null || echo "cuDNN not available"
pip list 2>/dev/null | grep -iE "torch|cuda|nvidia"
nvidia-smi 2>/dev/null || echo "nvidia-smi not available"
python -c "import torch; x = torch.randn(2,3).cuda(); print('CUDA tensor test: OK')" 2>&1 || echo "CUDA tensor creation failed"

Resolution Workflow

1. Read error traceback     -> Identify failing line and error type
2. Read affected file       -> Understand model/training context
3. Trace tensor shapes      -> Print shapes at key points
4. Apply minimal fix        -> Only what's needed
5. Run failing script       -> Verify fix
6. Check gradients flow     -> Ensure backward pass works

Common Fix Patterns

Error Cause Fix
RuntimeError: mat1 and mat2 shapes cannot be multiplied Linear layer input size mismatch Fix in_features to match previous layer output
RuntimeError: Expected all tensors to be on the same device Mixed CPU/GPU tensors Add .to(device) to all tensors and model
CUDA out of memory Batch too large or memory leak Reduce batch size, add torch.cuda.empty_cache(), use gradient checkpointing
RuntimeError: element 0 of tensors does not require grad Detached tensor in loss computation Remove .detach() or .item() before backward
ValueError: Expected input batch_size X to match target batch_size Y Mismatched batch dimensions Fix DataLoader collation or model output reshape
RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation In-place op breaks autograd Replace x += 1 with x = x + 1, avoid in-place relu
RuntimeError: stack expects each tensor to be equal size Inconsistent tensor sizes in DataLoader Add padding/truncation in Dataset __getitem__ or custom collate_fn
RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR cuDNN incompatibility or corrupted state Set torch.backends.cudnn.enabled = False to test, update drivers
IndexError: index out of range in self Embedding index >= num_embeddings Fix vocabulary size or clamp indices
RuntimeError: Trying to backward through the graph a second time Reused computation graph Add retain_graph=True or restructure forward pass

Read the full file on GitHub · 128 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 128 lines · 52 tokens per session scan A c00798dd62c0

Subscribe to this mod's changes

pytorch-build-resolver is an agent published in the GitHub repository loulanyue/awesome-claude-notes (270 stars, last pushed 5d ago), licensed MIT. It adds 52 tokens to every session and 1,389 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

ci-fixer

Staged CI failure hunter and fixer for opencode-swarm. Triages GitHub Actions failures layer-by-layer (quality → unit → integration/dist/security/php → smoke), diagnoses root causes, applies minimal targeted fixes, verifies each fix does not mask downstream failures, and never guesses — only acts on evidence from…

ZaxbyHub/opencode-swarm · 72 tokens

issue-tracer2

Takes any GitHub Issue, traces root cause through the codebase, and drives it to full resolution (fix + tests + PR).

ZaxbyHub/opencode-swarm · 33 tokens

data-pipeline-expert

ETL/ELT tasarimi, data quality, schema evolution, idempotent processing, pipeline debugging.

vibeeval/vibecosystem · 28 tokens

issue-tracer

Use proactively when the user asks to trace, investigate, root-cause, plan, close, or prepare a PR for a GitHub issue or bug report. Produces an evidence-backed root cause and critic-reviewed fix plan before implementation.

ZaxbyHub/opencode-swarm · 51 tokens

data-engineer

ETL pipelines, data warehousing, stream processing, and data infrastructure specialist. Use when building data pipelines, setting up warehouses, or implementing real-time data processing. Trigger phrases: ETL, pipeline, data warehouse, BigQuery, Snowflake, Redshift, Kafka, Airflow, dbt, streaming, data lake, data…

travisjneuman/.claude · 76 tokens

refactoring-specialist

Safe, incremental refactoring with comprehensive test coverage. Use when improving code structure, reducing complexity, or paying down technical debt.

travisjneuman/.claude · 30 tokens