{"id":"compute.parity--floatParityWorkflow","name":"floatParityWorkflow","owner":"yeho","package":"compute.parity","kind":"thing","signature":"external thing floatParityWorkflow","description":"A float parity workflow record carrying label, cpuPath, optimizedPath, summary, report, and related state.","context":"Compare numerical results with explicit tolerances and CPU-reference evidence.","parameters":[],"returns":"void","members":[{"name":"label","kind":"field","type":"text","description":"Stores label as text.","signature":"text label","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"cpuPath","kind":"field","type":"text","description":"Stores cpu path as text.","signature":"text cpuPath","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"optimizedPath","kind":"field","type":"text","description":"Stores optimized path as text.","signature":"text optimizedPath","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"summary","kind":"field","type":"floatParitySummary","description":"Stores summary as floatParitySummary.","signature":"floatParitySummary summary","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"report","kind":"field","type":"profileReport","description":"Stores report as profileReport.","signature":"profileReport report","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"mismatches","kind":"field","type":"list of parityMismatch","description":"Stores mismatches as list of parityMismatch.","signature":"list of parityMismatch mismatches","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"note","kind":"field","type":"text","description":"Stores note as text.","signature":"text note","tags":["thing","field","compute.parity"],"updated":"2026-09-09"},{"name":"floatParityWorkflow","kind":"constructor","parameters":[{"name":"label","type":"text","description":"Label."},{"name":"cpuPath","type":"text","description":"Cpu path."},{"name":"optimizedPath","type":"text","description":"Optimized path."},{"name":"summary","type":"floatParitySummary","description":"Summary."},{"name":"report","type":"profileReport","description":"Report."},{"name":"note","type":"text","description":"Note."}],"returns":"void","signature":"floatParityWorkflow(text label, text cpuPath, text optimizedPath, floatParitySummary summary, profileReport report, text note)","description":"Float parity workflow.","tags":["thing","constructor","compute.parity"],"updated":"2026-09-09"},{"name":"AddMismatch","kind":"method","parameters":[{"name":"mismatch","type":"parityMismatch","description":"Mismatch."}],"returns":"void","signature":"AddMismatch(parityMismatch mismatch)","description":"Add mismatch.","tags":["thing","method","compute.parity"],"exampleId":"method-AddMismatch-8","updated":"2026-09-09"},{"name":"MismatchCount","kind":"method","parameters":[],"returns":"int","signature":"MismatchCount() returns int","description":"Mismatch count.","tags":["thing","method","compute.parity"],"exampleId":"method-MismatchCount-9","updated":"2026-09-09"},{"name":"HasMismatches","kind":"method","parameters":[],"returns":"bool","signature":"HasMismatches() returns bool","description":"Has mismatches.","tags":["thing","method","compute.parity"],"exampleId":"method-HasMismatches-10","updated":"2026-09-09"},{"name":"Describe","kind":"method","parameters":[],"returns":"text","signature":"Describe() returns text","description":"Describe.","tags":["thing","method","compute.parity"],"exampleId":"method-Describe-11","updated":"2026-09-09"}],"tags":["compute","compute.parity","cpu","method","parity","source-example","thing","yeho"],"updated":"2026-09-09","source":{"repository":"yeho","path":"packages/compute/parity/workflows.yh","line":115,"sha256":"8852b29f3194986ee4600d8797d40c71d81df18abb3b14702d20e580306b4b91"},"status":"source-declared","notes":["Package presence and a declaration do not establish support on every host. Host services need their platform and lifecycle setup."],"examples":[{"id":"usage","title":"Use floatParityWorkflow","description":"A complete small caller. Values are illustrative; check the returned result and package requirements before connecting live resources.","code":"using compute.parity\n\n// Compare numerical results with explicit tolerances and CPU-reference evidence.\nfloatParityWorkflow sample = floatParityWorkflow(\"Player health\", \"cpu Path\", \"optimized Path\", floatParitySummary(), profileReport(\"Player health\", \"note\"), \"note\")\nConsole.Log(Text.From(sample.label))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_parity__floatparityworkflow\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.parity\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/parity\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.simd\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/simd\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","source-example"],"verification":"type checked","run":"cpu-oracle","sha256":"eb6172ddb39c89f8ad9dcc6d1463133934b482aff16e430a2cb7a4a2cb908bbd","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-AddMismatch-8","title":"floatParityWorkflow.AddMismatch","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.parity\n\n// Add mismatch.\nfloatParityWorkflow instance = floatParityWorkflow(\"Player health\", \"cpu Path\", \"optimized Path\", floatParitySummary(), profileReport(\"Player health\", \"note\"), \"note\")\nparityMismatch argument_mismatch = parityMismatch()\ninstance.AddMismatch(argument_mismatch)\nConsole.Log(\"AddMismatch completed\")\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_parity__floatparityworkflow\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.parity\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/parity\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.simd\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/simd\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"8eb7b0464a533beb37baf4c5496d91b770a49e9bf81e5fa8cf5354ca4e90cc89","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-MismatchCount-9","title":"floatParityWorkflow.MismatchCount","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.parity\n\n// Mismatch count.\nfloatParityWorkflow instance = floatParityWorkflow(\"Player health\", \"cpu Path\", \"optimized Path\", floatParitySummary(), profileReport(\"Player health\", \"note\"), \"note\")\nint result = instance.MismatchCount()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_parity__floatparityworkflow\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.parity\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/parity\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.simd\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/simd\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"97c69f3076097e77920d4e6bb29779b912c5b7bfcdf22e54a17add2e594a3cd9","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-HasMismatches-10","title":"floatParityWorkflow.HasMismatches","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.parity\n\n// Has mismatches.\nfloatParityWorkflow instance = floatParityWorkflow(\"Player health\", \"cpu Path\", \"optimized Path\", floatParitySummary(), profileReport(\"Player health\", \"note\"), \"note\")\nbool result = instance.HasMismatches()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_parity__floatparityworkflow\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.parity\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/parity\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.simd\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/simd\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"bd47b8220763e4c8c6cf9783f8664c90cf7035d3caa776d0f20658e73bf6a354","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Describe-11","title":"floatParityWorkflow.Describe","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using compute.parity\n\n// Describe.\nfloatParityWorkflow instance = floatParityWorkflow(\"Player health\", \"cpu Path\", \"optimized Path\", floatParitySummary(), profileReport(\"Player health\", \"note\"), \"note\")\ntext result = instance.Describe()\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.compute_parity__floatparityworkflow\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"compute.parity\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/parity\"\n\n[[dependencies]]\npackage = \"compute.profiling\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/profiling\"\n\n[[dependencies]]\npackage = \"compute.simd\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/simd\"\n\n[[dependencies]]\npackage = \"compute.tensor\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/compute/tensor\"\n\n[[dependencies]]\npackage = \"console\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/console\"\n\n[[dependencies]]\npackage = \"diagnostics\"\nversion = \"0.1.0\"\npath = \"../../../yeho/packages/diagnostics\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"fdc35625075629aedc4644e49e9847a908b6fab7ba6b3a3395fe7bc7692dab17","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null}],"searchTerms":["label","cpuPath","optimizedPath","summary","report","mismatches","note","floatParityWorkflow","AddMismatch","MismatchCount","HasMismatches","Describe"],"url":"https://demonhunterlabs.com/academy/api?item=compute.parity--floatParityWorkflow","json":"https://demonhunterlabs.com/reference/items/compute.parity--floatParityWorkflow.json","markdown":"https://demonhunterlabs.com/reference/text/compute.parity--floatParityWorkflow.md"}
