WonderPhi Compute Industrial -- Commercial License
Publicly online since 2010 · U.S. patent applications since 2012 · inventions offered since 2014. The work of Christopher Gabriel Brown, independently documented.
WonderPhi Compute Industrial -- Commercial License
Commercial-license edition of WonderPhi Compute. Fleet deployment, internal redistribution, priority email support. Perpetual license. Byte-for-byte identical runtime to Home; the constitution does not bend for anyone.
© CRI-ONE. All rights reserved. Patents issued and pending. Unauthorized reproduction of the underlying designs is prohibited.
Extended catalog & full narrative — WonderPhi Compute Industrial -- Commercial License
The extended dossier appended from the 2026-08-05 catalog snapshot. Prices in the body copy have been stripped; the live-store price on this page is the authoritative figure. Images have been omitted.
WonderPhi Compute for organizations — perpetual single-organization commercial license
Everything below is identical to the retail product. What's different: your license covers the entire buying organization (unlimited machines, VMs, containers, cloud instances) with no seat count, no annual renewal, no telemetry, no activation. Redistribution / SaaS / hosted-service exposure require a separate OEM arrangement.
Easy Setup — No Package Manager, No Account, No Cloud
One PowerShell line, no admin needed. No Python required on the target machine.
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass .\install.ps1
Copies the binary to %USERPROFILE%\bin, creates the inbox and outbox folders, and registers three scheduled tasks that auto-start on login. Done in about fifteen seconds.
WonderPhi Compute — put every one of your CPU cores to work at the same time
Almost every program you use only runs on one processor core — even if your machine has 8, 16, 40, or 80 of them. WonderPhi Compute is a tiny, permanent runtime that reads a plain text list of things you want done, then does them across every core at the same time. Work that took hours finishes in minutes. Nothing to install from the internet at run time, nothing to log in to, nothing that phones home. Ever.
Why this exists
Modern computers are wildly overprovisioned. A mid-range laptop has 8 cores; a workstation has 16 to 40; a rack server has 64+. Yet 95% of the everyday software you run — office suites, image tools, video encoders when driven from a menu, even most command-line utilities — use exactly one core at a time. The rest sit idle. You paid for them. They're doing nothing.
The reason isn't malice; it's just that writing parallel software is hard. So most tools defaulted to serial (one-at-a-time) execution and never came back. WonderPhi Compute is the retrofit: you keep using every single tool you already know, but you say "run these forty at once" instead of running them one at a time. That's the whole idea.
What it is, in plain English
Picture a store with 16 checkout lanes but only one open. Everyone waits in a single line. Your computer is like that — it has many “lanes” (CPU cores), but most programs use just one. WonderPhi Compute opens every lane at once.
You give it a plain text file. Each line is a thing to do — the exact same command you'd normally type by hand. It reads the list, dispatches every line to a different core simultaneously, waits for the barrier ("blank line" = "wait for everything above to finish"), then moves on to the next batch. When the run ends, it reports honestly which finished, which failed, and how long each one took. No black box, no silent retries, no "helpful" mutations.
How you use it — three steps
- Write a plan file. A plain text file with one shell command per line. Blank lines are barriers — nothing below runs until everything above finishes.
-
Hand it to Compute. Drop the file into the inbox folder that
install.ps1created, or runwpc myplan.wpc.txtfrom any terminal. -
Read the log. Compute writes a run folder with
wpc.log(the truth) andwatcher-run.log(the audit trail). Every exit code, every elapsed time, no editorializing.
Worked examples — copy these into a text file, save with .wpc.txt, and drop in the inbox
Example A — convert 200 Word documents to PDF
This runs 40 files at a time on a 40-core box. What used to take an afternoon finishes over lunch.
# WPC v1 # One shell command per line. Blank lines separate parallel stages. soffice --headless --convert-to pdf reports/report001.docx --outdir out/ soffice --headless --convert-to pdf reports/report002.docx --outdir out/ soffice --headless --convert-to pdf reports/report003.docx --outdir out/ ... (up to report200.docx)
Example B — encode 60 4K videos then delete the source files
# Stage 1: parallel-encode every source ffmpeg -i src01.mov -c:v hevc_nvenc -crf 22 out/out01.mp4 ffmpeg -i src02.mov -c:v hevc_nvenc -crf 22 out/out02.mp4 ffmpeg -i src03.mov -c:v hevc_nvenc -crf 22 out/out03.mp4 # --- barrier: wait for every ffmpeg to finish before deleting --- # Stage 2: delete originals (only runs after stage 1 completes successfully) del src01.mov del src02.mov del src03.mov
The blank line is a synchronization barrier. Nothing in Stage 2 starts until every command in Stage 1 finishes.
Example C — check the health of 500 web servers, in parallel
curl -sI https://server01.example.com/health curl -sI https://server02.example.com/health curl -sI https://server03.example.com/health ... (up to server500)
500 HTTP checks on a 40-core box finish in about the same wall-clock time as one check — the cores are almost idle waiting on the network, so they can each hold dozens of connections open at once.
Verified performance — measured on real hardware
On a dual Xeon Gold 6138T workstation (40 physical / 80 logical cores) with an NVIDIA A10M:
- 14.1× speedup on 40 parallel SHA-256 hashes vs. serial (96.6s → 6.8s). Memory-bandwidth-limited — distinct-file workloads reach 40–50×.
- 44.5× speedup on a 200-file document-conversion job (27 minutes serial → 37 seconds parallel).
- 1.5× speedup on 4K HEVC encoding using the A10M (
hevc_nvenc) vs.libx265on 40 cores — the ratio grows with resolution and codec complexity. - 500 domain health checks in 17.1 seconds (a naive serial script would take >30 minutes).
Full methodology, per-test parameters, and reproduction instructions are in BENCHMARKS.md inside the download. Every number above is a single unaveraged run; reproduce on your own hardware and expect within ±10%.
Under the hood — the honest technical picture
Compute is a single frozen executable (wpc.exe) written in Python, then packaged with PyInstaller. It uses Python's
subprocess module to spawn one child process per plan-line, distributes those children across cores with the OS's
default scheduler, and enforces a per-task memory cap of 4 GB and a per-run wall-clock cap of 24 hours. The concurrency
ceiling is hardcoded at 64 to prevent thrash on hyperthreaded 128-thread machines.
Its constitution — the ten immutable rules baked into every binary and verified at startup via SHA-256 checksum — guarantees that WPC will never silently do anything unexpected. Concretely:
- Log-only writes are append. A crash never destroys prior history. Your paper trail is safe.
- Malformed plan files are rejected up-front. If the file has a typo that would corrupt parsing, WPC refuses to start rather than half-run and half-crash.
- Commands dispatch verbatim. No mutation, no shell-escape mangling, no "smart" retry. What you wrote is what runs.
- Exit codes are reported truthfully. If a task exits with a nonzero code, that fact is in the log and in the summary. No exit-code laundering.
- Sabbath rule. Idle worker slots sleep — WPC never busy-waits, never spins the CPU at 100% waiting for nothing.
- Zero dependencies. No pip install anything. No network. No telemetry. No auto-update. Version 1.0.0 is the only version that will ever exist.
Run wpc --about to see the full constitution and verify the SHA-256 checksum of the binary you're running matches the one on your download.
How it compares to other parallel runners
| Aspect | GNU parallel | make -j | xargs -P | WonderPhi Compute |
|---|---|---|---|---|
| Config surface | ~100 flags | Makefile syntax | a dozen flags | Zero flags. One plan file. |
| Behavioral guarantees | Documented, extensive | Documented in POSIX | Minimal | 10 constitutional rules, checksum-verified at startup |
| Windows support | via Cygwin/WSL | via Cygwin/WSL/mingw | via Cygwin/WSL | Native single .exe, no shell needed |
| Barrier syntax | --halt, --semaphore | Target dependencies | None | Blank line = barrier |
| Log-append safety | Optional | Not applicable | None | Enforced by the constitution |
| Ships with recipes | No | No | No | Yes — 161 recipes across 7 libraries |
What you need
- Windows 10 / 11 (native
.exe). macOS and Linux users can run the Python source directly — Python 3.8+ standard library only. - A few gigabytes of free disk for logs. Compute never fills your disk — logs rotate at 100 MB per run.
- Whatever tool the plan-line invokes (
ffmpeg,curl,soffice, your own script, etc.). Compute doesn't ship those; it only orchestrates them. - No account. No cloud. No internet at runtime.
What's in the download
wpc.exe— the runtime (Windows, standalone, no Python required)wpc-watcher.exe,wpc-autoplan.exe,wpc-observer.exe— three always-on helpers for drop-a-file-and-it-runs modeinstall.ps1— one-line PowerShell installer (no admin required)wpc.py— runtime source (Python, stdlib only) for macOS/Linuxcommandments.py— the constitution (verified at startup)example.plan.wpc.txt,healthcheck.plan.wpc.txt— ready-to-run demosBENCHMARKS.md— full methodology + per-test parameters for every performance claim aboveREADME.md— concise reference for humansREADME-DANGER.md— edge cases and their fixesLICENSE.txt— perpetual single-user license, personalized with your name and order number at delivery
Common questions
Q. Does this replace tools like ffmpeg, curl, or Office?
No. It orchestrates them. You keep using every tool you already know. WonderPhi Compute just makes them run 40 at a time instead of 1 at a time.
Q. What if a task fails partway through the batch?
Other tasks in the same stage continue to completion. The failed task's nonzero exit code and its stderr are captured in the log. WPC does NOT retry silently — you decide whether to re-run the failed line by hand.
Q. Can I run this on a Mac or Linux server?
Yes. The .exe is Windows-only, but wpc.py is pure standard-library Python 3.8+ and runs anywhere Python does. Same behavior, same constitution.
Q. Will it use my GPU?
Not directly — but if you write plan-lines that invoke GPU-aware tools (ffmpeg's hevc_nvenc, CUDA-enabled programs, etc.), Compute injects live GPU-status environment variables (WPC_GPU, WPC_GPU_VRAM_FREE_MB, WPC_GPU_UTIL_PCT) so your plan can branch on GPU availability.
Q. Does it phone home?
No. Zero network access at runtime. No update check. No telemetry. Version 1.0.0 is the only version. You can run this on an air-gapped machine.
Q. Do I get updates?
No, and this is deliberate. The constitutional guarantee is that the copy you bought will behave exactly the same in 20 years as it does today. If you want a feature added, it will ship as a separate product (Autonomous, for example, is the auto-planning companion) — not as an update that could change the runtime you already trust.
Q. What if my company needs to run this on many servers?
The retail license is single-user (you, on machines you personally own or personally administer). For unlimited machines within one organization, buy the Industrial variant, which is a perpetual single-organization commercial license.
Glossary — every term used above, in plain English
- CPU core
- One of the small independent processors inside your machine. A modern laptop has 8; a workstation has 16–40; a rack server has 64+.
- Serial vs parallel
- Serial = one thing after another. Parallel = many things at the same time. Compute converts serial workloads into parallel ones.
- Plan file (
*.wpc.txt) - A plain text file listing what to do, one shell command per line. Blank lines act as barriers.
- Barrier / stage
- A blank line in the plan file. Nothing below runs until every command above it has finished. Lets you say "encode all videos first, THEN delete the sources".
- Shell command
- Any line you'd normally type into a terminal / Command Prompt / PowerShell prompt.
- Exit code
- The number a program returns when it ends. 0 means success; anything else means failure. Compute reports these truthfully — no laundering.
- Constitution / commandments
- Ten immutable rules hardcoded into every binary. Compute verifies them at startup by SHA-256 checksum. If the binary were tampered with, it refuses to run.
- SHA-256 checksum
- A short "fingerprint" of a file. If even one byte changes, the fingerprint changes. Used here to prove the constitution hasn't been tampered with.
- Telemetry
- Software calling home to report what you're doing. Compute has none. Zero. Ever.
- Air-gapped machine
- A computer with no network connection at all. Compute works fine on one — it never needs the internet.
- Watcher
- A helper program (
wpc-watcher.exe) that quietly watches a folder. When you drop a plan file in, it runs it automatically. - Frozen executable
- A single
.exefile that bundles the Python runtime and all code together. Nothing else to install; runs on any Windows machine that meets the OS version requirement. - Perpetual license
- Buy once, use forever. No renewals, no expiration. If your license terminates because you redistributed the software, you must delete every copy.
License & support — Industrial variant
Perpetual, non-exclusive, non-transferable Industrial license. Covers all machines, VMs, containers, and cloud instances operated by a single organization (the legal entity named on the purchase receipt plus wholly-owned subsidiaries). No seat count, no machine limit, no renewals, no activation, no telemetry.
Employees, contractors, and consultants under the organization's direction may operate the software solely for the licensed organization's benefit. Rights end when their engagement ends.
Not permitted without a separate arrangement: redistributing the software; hosting it publicly; embedding it in a product/SaaS/PaaS you sell to third parties; sublicensing.
Support: email chris@cri-one.com.
Every download's LICENSE.txt is personalized at checkout with your organization name, order number, and issue date. USA sales.
