Show / Hide Table of Contents

Enum OrtDeviceEpIncompatibilityReason

Reasons why an execution provider might not be compatible with a device.

Namespace: Microsoft.ML.OnnxRuntime
Assembly: Microsoft.ML.OnnxRuntime.dll
Syntax
[Flags]
public enum OrtDeviceEpIncompatibilityReason : uint
Remarks

This is a flags enum. Multiple reasons can be combined using bitwise OR.

Fields

Name Description
DeviceIncompatible

Device itself is incompatible with the execution provider.

DriverIncompatible

Driver is incompatible with the execution provider.

MissingDependency

Required dependency is missing.

None

No incompatibility.

Unknown

Unknown incompatibility reason.

  • Improve this Doc
  • View Source
In This Article
Back to top