forked from microsoft/olive-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsd_qnn_workflow.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
sd_qnn_workflow.json
File metadata and controls
39 lines (39 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"input_model": {
"model_path": "stable-diffusion-v1-5/stable-diffusion-v1-5"
},
"systems": {
"target_system": {
"type": "LocalSystem",
"accelerators": [
{
"device": "npu",
"execution_providers": [
"QNNExecutionProvider"
]
}
]
}
},
"evaluators": {
"common_evaluator": {
}
},
"passes": {
"aitkpython": {
"type": "AitkPython",
"activation_type": "uint16",
"precision": "uint8",
"dataset_name": "phiyodr/coco2017",
"split": "train",
"length": 100,
"user_script": "sd_qnn_workflow.py"
}
},
"evaluator": "common_evaluator",
"evaluate_input_model": false,
"target": "target_system",
"clean_cache": false,
"output_dir": "model/sd_qnn",
"cache_dir": "cache"
}