interface QnnExecutionProviderOption {
    backendPath?: string;
    backendType?: string;
    enableFp16Precision?: boolean;
    name: "qnn";
}

Hierarchy (view full)

Properties

backendPath?: string

Specify a path to the QNN backend library. Mutually exclusive with backendType.

backendType?: string

Specify the QNN backend type. E.g., 'cpu' or 'htp'. Mutually exclusive with backendPath.

Default

'htp'
enableFp16Precision?: boolean

Specify whether to enable HTP FP16 precision.

Default

true
name: "qnn"

Generated using TypeDoc