pytorch-build-resolver

pytorch-build-resolver is an agent for coding agents from affaan-m/ECC. It costs 52 tokens per session (1,114 once invoked), scanned A, original, MIT.

A troubleshooting guide for PyTorch, a Python library used to train and run machine-learning models. It focuses on crashes involving CUDA, the software layer used to run PyTorch on NVIDIA GPUs, tensors, gradients, data loading, and mixed-precision calculations.

In plain words
What is it for?
Use it to fix tensor shape mismatches, CPU/GPU placement errors, gradient failures, DataLoader problems, CUDA setup issues, and automatic mixed-precision errors.
Why use it?
It helps explain common training and inference failures without requiring broad changes to the model code. It checks whether PyTorch, CUDA, and the GPU environment work together correctly.

Agent

Part of the ecc plugin — 70 skills, 56 commands, 68 agents, 1 MCP server shipped together

About the project

ECC is a toolkit that organizes and improves how coding agents work through skills, memory, security checks, research practices, and related extensions. It is for developers using agents such as Claude Code, Codex, OpenCode, and Cursor.

affaan-m/ECC · 248,541 stars · on GitHub

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.

agentmods
npx agentmods add agents/affaan-m/ecc/pytorch-build-resolver
Clone the repo
git clone --depth 1 https://github.com/affaan-m/ECC

Or install ecc, the plugin that ships this one along with the rest of its 70 skills, 56 commands, 68 agents, 1 MCP server.

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/affaan-m/ecc/pytorch-build-resolver.svg)](https://agentmods.dev/agents/affaan-m/ecc/pytorch-build-resolver)
Your own site
<a href="https://agentmods.dev/agents/affaan-m/ecc/pytorch-build-resolver"><img src="https://agentmods.dev/badge/agents/affaan-m/ecc/pytorch-build-resolver.svg" alt="Measured on agentmods" 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,114 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00052 $0.01114
Opus 5 $0.00026 $0.00557
Sonnet 5 $0.00010 $0.00223
Haiku 4.5 $0.00005 $0.00111

Measured yesterday against content hash e02843f9bf66, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 yesterday.

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.

.kiro/agents/pytorch-build-resolver.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 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 autograd computes expected gradients

Common Fix Patterns

Error Cause Fix
mat1 and mat2 shapes cannot be multiplied Linear layer input size mismatch Fix in_features to match previous layer output
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
element 0 of tensors does not require grad Detached tensor in loss computation Remove .detach() or .item() before gradient computation
Expected input batch_size X to match target batch_size Y Mismatched batch dimensions Fix DataLoader collation or model output reshape
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
stack expects each tensor to be equal size Inconsistent tensor sizes in DataLoader Add padding/truncation or custom collate_fn
cuDNN error: CUDNN_STATUS_INTERNAL_ERROR cuDNN incompatibility Set torch.backends.cudnn.enabled = False to test, update drivers
index out of range in self Embedding index >= num_embeddings Fix vocabulary size or clamp indices
Trying to reuse a freed autograd graph Reused computation graph Add retain_graph=True or restructure forward pass

Read the full file on GitHub · 102 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. yesterday First seen · 102 lines · 52 tokens per session scan A e02843f9bf66

Subscribe to this mod's changes

pytorch-build-resolver is an agent published in the GitHub repository affaan-m/ECC (248,541 stars, last pushed today), licensed MIT. It adds 52 tokens to every session and 1,114 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

fenic-feature-developer

Use this agent when the user requests help implementing new features, operations, expressions, or functionality for the Fenic DataFrame library. This includes:\n\n- Adding new DataFrame operations (e.g., 'add a pivot operation to DataFrame')\n- Creating new logical expressions (e.g., 'implement a regexextract…

typedef-ai/fenic · 0 tokens

project-map

MCP server with single run tool for LLM Python code execution.

beycom/onetool-mcp · 0 tokens

WEBHOOK_SDK

Write a custom Commonly agent in 30 lines of Python. The SDK is a single stdlib-only file that implements the four CAP verbs; the scaffolder wires publish + install + token-issuance in one command.

Team-Commonly/commonly · 0 tokens

testing-expert

Use this agent for Output.ai testing strategies including Vitest configuration, Temporal workflow testing, LLM mocking, integration testing, and test performance optimization. Specializes in JavaScript testing patterns with Output.ai abstractions.

growthxai/output · 46 tokens

python-pro

Python 3.13 language expert for the ClosedLoop plugin monorepo. Reviews implementation plans for type annotation correctness, argparse CLI conventions, import isolation, fail-open/fail-closed boundary patterns, and pyright/ruff compliance. Produces type-patterns.md in legacy mode.

closedloop-ai/claude-plugins · 60 tokens

python-pro

Write idiomatic Python code with advanced features like decorators, generators, and async/await. Optimizes performance, implements design patterns, and ensures comprehensive testing. Use PROACTIVELY for Python refactoring, optimization, or complex Python features.

echoVic/blade-code · 51 tokens