{"id":"word--dispatch","name":"dispatch","owner":"yeho","package":"language","kind":"keyword","signature":"dispatch","description":"Launch a compute function","context":"Keep the task handle whenever later work depends on completion, failure, or measured execution.","parameters":[],"returns":"","members":[],"tags":["compute","cpu","gameplay","gpu","hybrid","keyword","pipeline","yeho"],"updated":"2026-09-09","source":{"repository":"yeho","path":"parser_expressions.cpp parseDispatchStartExpression; accelerator runtime fixtures"},"status":"experimental","notes":["Compute dispatch shape and backend admission are validated.","A completed task can still represent a failed kernel; inspect failed when correctness depends on it."],"examples":[{"id":"cpu","title":"CPU · [cpu]","description":"Apply damage to a small batch of health values on the explicit CPU route. Each invocation owns one element.","code":"[cpu]\ncompute ApplyDamage(buffer of int health, int damage)\n{\n    int index = compute.index\n    if index >= health.count { return }\n    health[index] = health[index] - damage\n}\n\nbuffer of int health\nhealth.Add(100)\nhealth.Add(80)\nhealth.Add(60)\ncomputeTask job = dispatch ApplyDamage(health, 10)\nwait job\nif job.failed { Console.Error(job.error.message) Process.Exit(1) }\nfor index from 0 < health.count { Console.Log(Text.From(health[index])) }\n","tags":["cpu","compute","gameplay"],"run":"cpu-oracle","expected":"90\n70\n50","verifyRun":true,"manifest":"manifestVersion = \"2\"\npackage = \"api.example.word__dispatch\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n","verification":"executed","sha256":"b37d171fd317ea61ef9f6b1cc38b1ab3bf6481ecaa98fc8ea7ff9f21d2770191","checked":"2026-09-09","diagnostic":"","observedOutput":"90\n70\n50","checkedBackend":"cpu-oracle"},{"id":"gpu","title":"GPU · [gpu]","description":"Double a batch of reward values on native Metal. The [gpu] tag requires an accelerator backend; CPU oracle cannot silently satisfy it.","code":"[gpu]\ncompute DoubleRewards(buffer of int rewards, int multiplier)\n{\n    int index = compute.index\n    if index >= rewards.count { return }\n    rewards[index] = rewards[index] * multiplier\n}\n\nbuffer of int rewards\nrewards.Add(100)\nrewards.Add(80)\nrewards.Add(60)\ncomputeTask job = dispatch DoubleRewards(rewards, 2)\nwait job\nif job.failed { Console.Error(job.error.message) Process.Exit(1) }\nfor index from 0 < rewards.count { Console.Log(Text.From(rewards[index])) }\n","tags":["gpu","compute","gameplay"],"run":"metal","expected":"200\n160\n120","verifyRun":true,"manifest":"manifestVersion = \"2\"\npackage = \"api.example.word__dispatch\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n","verification":"executed","sha256":"27d79955a1cc02a6248c3c3bafa697a0986f09798db9a91f099417799f3a76b8","checked":"2026-09-09","diagnostic":"","observedOutput":"200\n160\n120","checkedBackend":"metal"},{"id":"hybrid","title":"CPU + GPU · one pipeline","description":"The CPU prepares rewards, the GPU doubles them, then the CPU totals the finished buffer. There is no [both] tag. Ordinary host code and a [gpu] kernel cooperate explicitly.","code":"[gpu]\ncompute DoubleRewards(buffer of int rewards)\n{\n    int index = compute.index\n    if index >= rewards.count { return }\n    rewards[index] = rewards[index] * 2\n}\n\n// CPU: prepare a small game reward batch.\nbuffer of int rewards\nfor level from 1 <= 4 { rewards.Add(level * 10) }\n\n// GPU: process independent elements.\ncomputeTask job = dispatch DoubleRewards(rewards)\nwait job\nif job.failed { Console.Error(job.error.message) Process.Exit(1) }\n\n// CPU: consume only after the GPU has finished.\nint total = 0\nfor index from 0 < rewards.count { total = total + rewards[index] }\nConsole.Log(Text.From(total))\n","tags":["hybrid","cpu","gpu","compute","pipeline"],"run":"metal","expected":"200","verifyRun":true,"manifest":"manifestVersion = \"2\"\npackage = \"api.example.word__dispatch\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n","verification":"executed","sha256":"747f44f7b3771eaddf6ff06223eef841b7ca9feffab4b99bc782a5de039c131e","checked":"2026-09-09","diagnostic":"","observedOutput":"200","checkedBackend":"metal"}],"searchTerms":[],"url":"https://demonhunterlabs.com/academy/api?item=word--dispatch","json":"https://demonhunterlabs.com/reference/items/word--dispatch.json","markdown":"https://demonhunterlabs.com/reference/text/word--dispatch.md"}
