ONNX Runtime JavaScript API
    Preparing search index...

    Interface QnnExecutionProviderOption

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

    Hierarchy (View Summary)

    Index

    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.

    'htp'
    
    enableFp16Precision?: boolean

    Specify whether to enable HTP FP16 precision.

    true
    
    name: "qnn"