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.
git clone --depth 1 https://github.com/Fmarzochi/EGCWrote 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.
[](https://agentmods.dev/agents/fmarzochi/egc/pytorch-build-resolver)<a href="https://agentmods.dev/agents/fmarzochi/egc/pytorch-build-resolver"><img src="https://agentmods.dev/badge/agents/fmarzochi/egc/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.
<a href="https://agentmods.dev/agents/fmarzochi/egc/pytorch-build-resolver"><img src="https://agentmods.dev/badge/agents/fmarzochi/egc/pytorch-build-resolver.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00052 | $0.01345 |
| Opus 5 | $0.00026 | $0.00673 |
| Sonnet 5 | $0.00010 | $0.00269 |
| Haiku 4.5 | $0.00005 | $0.00135 |
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.
This is a copy
97% identical to pytorch-build-resolver — 10 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 122 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
- Diagnose PyTorch runtime and CUDA errors
- Fix tensor shape mismatches across model layers
- Resolve device placement issues (CPU/GPU)
- Debug gradient computation failures
- Fix DataLoader and data pipeline errors
- 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 |
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.
- 5d ago First seen · 122 lines · 52 tokens per session scan A 9564b29ed3bb
pytorch-build-resolver is an agent published in the GitHub repository Fmarzochi/EGC (49 stars, last pushed yesterday), licensed Apache-2.0. It adds 52 tokens to every session and 1,345 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to pytorch-build-resolver, differing in 10 lines, and is treated as a copy.
Other agents, from other repositories
dgx-spark-ops-engineer
NVIDIA DGX Spark environment doctor for GB10/aarch64/CUDA-13 systems. Diagnoses and fixes ML stack setup, unified-memory, and thermal issues. Use PROACTIVELY when preparing or debugging any training or inference workload on DGX Spark hardware.
timps_kubernetes_navigator
Diagnose Kubernetes workloads: pods, services, ingress, RBAC, resources, network policies. Outputs fix YAML and Helm/Kustomize patches. Use the timpskubernetesnavigator MCP tool to perform this task. Do not answer directly — delegate to this sub-agent.
ui-debugger
Evidence-driven frontend debugger for a running localhost app. Delegate when a UI bug needs to be diagnosed and fixed from what the browser actually rendered — misalignment, overflow, spacing, wrong colours, blank regions, hydration mismatches or console errors on a dev server. Requires the dev server to be running…
ecc-pytorch-build-resolver
PyTorch runtime, CUDA, and training error resolution specialist. Fixes tensor shape mismatches, device errors, gradient issues, DataLoader problems, and mixed precision failures with minimal changes. Use when PyTorch training or inference crashes.
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.