ExecutionModeOnnx

ExecutionModeOnnx enumeration

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

Members

Member nameDescription
ORT_SEQUENTIALExecute operators sequentially, ensuring that each operation is completed before the next one starts.
ORT_PARALLELExecute operators in parallel (whenever possible), to improve performance.

See Also