-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathlenet.json
29 lines (29 loc) · 1.13 KB
/
lenet.json
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
{
"benchmark": {
"name": "Lenet-5",
"short_name": "lenet",
"relative_path": "deep_learning/lenet",
"module_name": "lenet",
"func_name": "lenet5",
"kind": "microapp",
"domain": "Learning",
"dwarf": "dense_linear_algebra",
"parameters": {
"S": { "N": 4, "H": 28, "W": 28 },
"M": { "N": 8, "H": 56, "W": 56 },
"L": { "N": 8, "H": 176, "W": 176 },
"paper": { "N": 16, "H": 256, "W": 256 }
},
"init": {
"func_name": "initialize",
"input_args": ["N", "H", "W"],
"output_args": ["input", "conv1", "conv1bias", "conv2", "conv2bias",
"fc1w", "fc1b", "fc2w", "fc2b", "fc3w", "fc3b", "C_before_fc1"]
},
"input_args": ["input", "conv1", "conv1bias", "conv2", "conv2bias",
"fc1w", "fc1b", "fc2w", "fc2b", "fc3w", "fc3b", "N", "C_before_fc1"],
"array_args": ["input", "conv1", "conv1bias", "conv2", "conv2bias",
"fc1w", "fc1b", "fc2w", "fc2b", "fc3w", "fc3b"],
"output_args": []
}
}