We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7890e commit 4d760e3Copy full SHA for 4d760e3
js/common/lib/inference-session.ts
@@ -308,7 +308,18 @@ export declare namespace InferenceSession {
308
309
export interface QnnExecutionProviderOption extends ExecutionProviderOption {
310
readonly name: 'qnn';
311
- // TODO add flags
+ /**
312
+ * Specify a path to the QnnHtp.dll file.
313
+ *
314
+ * @default 'QnnHtp.dll'
315
+ */
316
+ backendPath?: string;
317
318
+ * Specify whether to enable HTP FP16 precision.
319
320
+ * @default true
321
322
+ enableFp16Precision?: boolean;
323
}
324
export interface CoreMLExecutionProviderOption extends ExecutionProviderOption {
325
readonly name: 'coreml';
0 commit comments