RouteOptions Struct
Options for Model::graph() — controls how the model assembles into a Graph. More...
Declaration
Included Headers
Public Member Attributes Index
| bool | include_input = false |
|
Include a public nodes::Input Node at the head. More... | |
| bool | include_output = false |
|
Include a public nodes::Output Node at the tail. More... | |
| bool | expose_all_outputs = false |
|
Expose individual model output endpoints when the model route has multiple physical outputs. More... | |
| std::string | upstream_name |
|
Element name of the upstream Node feeding the model (default: "decoder"). More... | |
| std::string | name_suffix |
|
Suffix appended to generated element names. More... | |
| std::string | buffer_name |
|
Optional buffer pool name (used by advanced memory configurations). More... | |
| VerboseOptions | verbose |
| std::string | processcvu_requested_run_target = "AUTO" |
|
Requested backend for model-managed processcvu generic-EV stages. More... | |
| ProcessCvuOptions | processcvu |
|
Simple placement for model-managed processcvu stages when this Graph/Runner is built. More... | |
| ProcessMlaOptions | processmla |
|
MLA stage execution options. More... | |
| PreparedRunnerOptions | prepared_runner |
|
Experimental prepared-route runner. More... | |
| int | async_queue_depth = 0 |
|
Depth for internally inserted async queue2 elements. More... | |
| AdvancedExecutionOptions | advanced_execution |
|
Preferred jargon-free execution surface; overlaid over Model::Options.advanced_execution (route wins) and folded into the legacy fields at Graph build time. More... | |
Description
Options for Model::graph() — controls how the model assembles into a Graph.
By default model.graph() returns a reusable model fragment with open named endpoints. Set include_input and/or include_output when you intentionally want the returned Graph to contain public nodes::Input / nodes::Output boundary nodes.
Definition at line 333 of file Model.h.