ExecutionModeOnnx

ExecutionModeOnnx enumeration

Controls whether you want to execute operators in the graph one-by-one or in concurrently.

public enum ExecutionModeOnnx

Values

NameValueDescription
ORT_SEQUENTIAL0Execute operators sequentially, ensuring that each operation is completed before the next one starts.
ORT_PARALLEL1Execute operators in parallel (whenever possible), to improve performance.

See Also