-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathllama3_1_dml_config.json
More file actions
43 lines (43 loc) · 1.04 KB
/
llama3_1_dml_config.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
40
41
42
43
{
"input_model": {
"type": "HfModel",
"model_path": "meta-llama/Llama-3.1-8B-Instruct"
},
"systems": {
"host_system": {
"type": "LocalSystem",
"accelerators": [
{
"device":"cpu",
"execution_providers": [
"CPUExecutionProvider"
]
}
]
},
"target_system": {
"type": "LocalSystem",
"accelerators": [
{
"device":"gpu",
"execution_providers": [
"DmlExecutionProvider"
]
}
]
}
},
"passes": {
"mb": {
"type": "ModelBuilder",
"precision": "int4"
}
},
"host": "host_system",
"target": "target_system",
"log_severity_level": 1,
"output_dir": "model/llama3_1",
"cache_dir": "cache",
"no_artifacts": true,
"evaluate_input_model": false
}