Skip to content

Commit 4d760e3

Browse files
fs-eirejatinwadhwa921
authored andcommitted
[js] update JavaScript API to support QNN EP options (microsoft#23486)
### Description As a pre-requisite of microsoft#23468
1 parent 9c7890e commit 4d760e3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

js/common/lib/inference-session.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,18 @@ export declare namespace InferenceSession {
308308

309309
export interface QnnExecutionProviderOption extends ExecutionProviderOption {
310310
readonly name: 'qnn';
311-
// TODO add flags
311+
/**
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;
312323
}
313324
export interface CoreMLExecutionProviderOption extends ExecutionProviderOption {
314325
readonly name: 'coreml';

0 commit comments

Comments
 (0)