forked from ScratchV-Compiler/ScratchV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci_models.json
More file actions
23 lines (23 loc) · 726 Bytes
/
Copy pathci_models.json
File metadata and controls
23 lines (23 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"models": [
{
"name": "cnn.onnx",
"path": "models/graph/cnn.onnx",
"input_shape": [1, 3, 250, 250],
"description": "3-layer CNN (Conv+MaxPool+FC) for binary classification",
"code_size_scratchv": 3140,
"code_size_llvm": 3824,
"static_insns_scratchv": 785,
"static_insns_llvm": 956
}
],
"cache_configs": {
"tiny": {"sets": 16, "ways": 2, "block_size": 16},
"embedded": {"sets": 64, "ways": 2, "block_size": 32},
"desktop": {"sets": 128, "ways": 4, "block_size": 64},
"server": {"sets": 256, "ways": 8, "block_size": 64}
},
"microarch_profiles": ["single", "fast", "basic", "slow"],
"max_emu_instructions": 50000000,
"sim_timeout_s": 120
}