{"id":912030,"date":"2026-07-21T22:55:04","date_gmt":"2026-07-21T22:55:04","guid":{"rendered":"https:\/\/cri-one.com\/blog\/2026\/07\/21\/wonderphi-compute-put-the-compute-back-in-the-game\/"},"modified":"2026-07-21T23:15:22","modified_gmt":"2026-07-21T23:15:22","slug":"wonderphi-compute-put-the-compute-back-in-the-game","status":"publish","type":"post","link":"https:\/\/cri-one.com\/blog\/2026\/07\/21\/wonderphi-compute-put-the-compute-back-in-the-game\/","title":{"rendered":"WonderPhi Compute \u2014 Put the Compute Back in the Game"},"content":{"rendered":"<p style=\"font-size:18px;font-weight:bold;color:#1a1a2e;background:#f0f0ff;padding:16px 20px;border-left:4px solid #302b63;border-radius:4px;margin:0 0 1.5em\">Software acceleration for existing hardware.<\/p>\n<p>Every machine you own has more power than you use. Cores sit idle. GPU memory stays dark. Background processes eat cycles you never asked them to. The operating system has its own agenda, and your work waits in line behind it.<\/p>\n<p><strong>WonderPhi Compute<\/strong> is the antidote: a constitutional parallel runner that reads a plain-text plan of shell commands and executes them across every CPU core, honestly showing you what it&#8217;s doing.<\/p>\n<h2>What Makes It Different<\/h2>\n<p>Most parallel runners \u2014 GNU parallel, make -j, xargs -P \u2014 grew organically over decades. A hundred flags. No philosophy. WonderPhi Compute is designed the other way: <strong>10 immutable constitutional rules<\/strong>, hardcoded into every binary, verified at startup, and carved in stone.<\/p>\n<table style=\"width:100%;border-collapse:collapse;margin:1.5em 0\">\n<thead>\n<tr style=\"background:#f4f4f4\">\n<th style=\"padding:8px;text-align:left;border:1px solid #ddd\">#<\/th>\n<th style=\"padding:8px;text-align:left;border:1px solid #ddd\">Commandment<\/th>\n<th style=\"padding:8px;text-align:left;border:1px solid #ddd\">What It Guarantees<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">I<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Sole Master<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">No competing orchestrator overrides WPC mid-run<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">II<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">No Other Gods<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Exactly one instance per working directory<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">III<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not in Vain<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Malformed plans rejected, never silently mangled<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">IV<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Sabbath<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Idle workers sleep \u2014 no busy-waiting, no spinning<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">V<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Honour Thy Parents<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">The plan format is frozen forever<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">VI<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not Kill<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Log appends only \u2014 a crash never destroys history<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">VII<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not Adultery<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Commands dispatched verbatim \u2014 no silent retry<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">VIII<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not Steal<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Max 64 concurrent, 4 GB\/task, 24-hour runtime cap<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">IX<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not False Witness<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Exit codes and elapsed times reported truthfully<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px;border:1px solid #ddd\">X<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Not Covet<\/td>\n<td style=\"padding:8px;border:1px solid #ddd\">Zero dependencies, no network, no telemetry<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Every version of WonderPhi Compute that will ever exist is <strong>v1.0.0<\/strong>. Born once. Never updated. No subscription. No telemetry. No dependencies. That&#8217;s the constitutional guarantee.<\/p>\n<h2>How It Works<\/h2>\n<p>You write a <strong>plan file<\/strong> \u2014 a plain-text list of shell commands, one per line. Blank lines are barriers: everything above must finish before anything below starts. Comments start with <code>#<\/code>. That&#8217;s the entire format.<\/p>\n<pre>\n# WPC v1\n# Stage 1 \u2014 extract text from every PDF in parallel\npdftotext report001.pdf out001.txt\npdftotext report002.pdf out002.txt\npdftotext report003.pdf out003.txt\n\n# Stage 2 \u2014 aggregate (waits for stage 1)\ncat out*.txt &gt; combined.txt\n<\/pre>\n<p>Feed that to <code>wpc.exe<\/code>, and it runs every stage across every core simultaneously. <strong>A serial script that would run for two hours finishes in ten minutes.<\/strong><\/p>\n<h2>GPU Awareness<\/h2>\n<p>WonderPhi Compute detects your NVIDIA GPU at startup and exposes <code>$WPC_GPU=1<\/code> to every task&#8217;s environment. It doesn&#8217;t offload work to the GPU itself \u2014 that&#8217;s the job of your commands. But your scripts can branch on GPU availability, choosing the right silicon for the right job.<\/p>\n<h2>Always-On Mode<\/h2>\n<p>Three cooperating watchers turn WonderPhi into a drop-a-file-and-it-runs service:<\/p>\n<ul>\n<li><strong>The Watcher<\/strong> \u2014 drop plan files into <code>wpc-inbox<\/code>, they run automatically<\/li>\n<li><strong>The Autoplan<\/strong> \u2014 drop 5+ files of the same type, and a plan is generated and dispatched automatically<\/li>\n<li><strong>The Observer<\/strong> \u2014 samples your process list, and when it sees the same tool running 5+ times, suggests a parallel plan<\/li>\n<\/ul>\n<p>None of these modify <code>wpc.exe<\/code>. The 10 Commandments and the v1.0.0 guarantee remain completely intact.<\/p>\n<h2>Who This Is For<\/h2>\n<p>If you work with media files, batch processing, data pipelines, web scraping, testing, archiving, or any other workload where the same command runs many times \u2014 this is for you. Whether you&#8217;re a video editor transcoding a season&#8217;s worth of footage, a researcher checksumming a forensic evidence archive, or a developer running tests across twenty repos at once \u2014 WonderPhi puts every core to work.<\/p>\n<p>No subscriptions. No cloud dependency. No telemetry. Just your hardware, fully utilized, with honest reporting.<\/p>\n<p style=\"margin-top:2em\"><strong><a href=\"https:\/\/cri-one.com\/store\/wonderphi-compute.html\">Browse the WonderPhi Compute product line \u2192<\/a><\/strong><\/p>\n<p><strong><a href=\"https:\/\/cri-one.com\/store\/wonderphi-compute-constitutional-parallel-runner.html\">WonderPhi Compute \u2014 $99.99<\/a><\/strong> | <strong><a href=\"https:\/\/cri-one.com\/store\/wonderphi-library-recipes.html\">WonderPhi Library \u2014 $9.99<\/a><\/strong> | <strong><a href=\"https:\/\/cri-one.com\/store\/wonderphi-autonomous-compute.html\">WonderPhi Autonomous Compute \u2014 $29.99<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Software acceleration for existing hardware. Every machine you own has more power than you use. Cores sit idle. GPU memory stays dark. Background processes eat cycles you never asked them to. The operating system has its own agenda, and your work waits in line behind it. WonderPhi Compute is the antidote: a constitutional parallel runner [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353,357,354,1],"tags":[],"class_list":["post-912030","post","type-post","status-publish","format-standard","hentry","category-computing","category-product-insights","category-technology","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/posts\/912030","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/comments?post=912030"}],"version-history":[{"count":1,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/posts\/912030\/revisions"}],"predecessor-version":[{"id":912033,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/posts\/912030\/revisions\/912033"}],"wp:attachment":[{"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/media?parent=912030"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/categories?post=912030"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cri-one.com\/blog\/wp-json\/wp\/v2\/tags?post=912030"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}