Skip to main content

27 docs tagged with "hpc"

View all tags

Animation Toolkit for HPC Talks — Deep Dive

This reference covers everything you need to produce publication-quality animations for HPC conference talks using code-based tools. It assumes you have completed the [[animation-toolkit-for-hpc-talks-beginner-guide|beginner guide]] and have Manim, Motion Canvas, and matplotlib rendering successfully.

Karpathy autoresearch — Deep-Dive Reference

Karpathy's autoresearch (March 7, 2026) is a ~630-line single-file LLM training repo that hands a Claude Code agent the job of iterating on its own training code. The human edits program.md to describe research goals; the agent edits train.py to test hypotheses; every experiment runs for exactly five wall-clock minutes and reports valbpb; the agent keeps improvements and reverts regressions. This document covers the three-file architecture, the valbpb metric, the Muon optimizer, agent permission model, HPC/Slurm integration, Apple Silicon adaptation, and how autoresearch differs from conventional HPO frameworks.

Oh My Pi (omp) — Deep-Dive Reference

oh-my-pi (omp) is a terminal AI coding agent built on a native Rust engine (~55k lines) with a Bun/TypeScript frontend, forked from pi-mono by Mario Zechner and extended by can1357 (Can Bölük) into a full-featured, provider-agnostic development environment. It supports 40+ LLM providers, 32 built-in tools, LSP/DAP integration, worktree-isolated subagents, and an autonomous memory system — capabilities that distinguish it sharply from single-provider agents like Claude Code or Codex CLI. This document is a peer-level reference covering installation, the full configuration model (including Anthropic, Ollama, and vLLM via SSH tunnel), the core feature set, extensibility primitives, and a practical pattern for running vLLM on a Slurm/HPC cluster. It assumes you are comfortable with the terminal, YAML/TypeScript config, and basic HPC concepts; it does not hand-hold on prerequisites. See [[omp-beginner-guide|Oh My Pi Beginner Guide]] for an introductory treatment.