command dialect¶
Reusable command-program construction operations.
| Property | Value |
|---|---|
| Bytecode dialect ID | 0x1e |
| Registered by default | yes |
| Operations | 8 |
Operations¶
| Operation | Summary |
|---|---|
command.concurrent |
Permit child commands to execute without dependency edges between siblings and join them on exit. |
command.parameter |
Associate immutable named parameter content with an explicit command-program buffer root. |
command.program.decl |
Bodyless declaration of a reusable command program. |
command.program.def |
Reusable command-program definition. |
command.program.launch |
Invoke a command program with explicit specialization values and issue-time buffer bindings. |
command.return |
Terminate a command-program definition. |
command.serial |
Order each child command after the preceding child completes. |
command.yield |
Terminate a structured command schedule region. |