-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbench_config_gridcut.json
More file actions
49 lines (49 loc) · 911 Bytes
/
bench_config_gridcut.json
File metadata and controls
49 lines (49 loc) · 911 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
40
41
42
43
44
45
46
47
48
49
{
"name": "GridCut example",
"num_run": 3,
"types": [
{
"cap": "int32",
"term": "int32",
"flow": "int64",
"index": "int32"
}
],
"algorithms": [
"gridcut_mt",
"gridcut"
],
"parallel": {
"threads": [
1,
2,
4
]
},
"data_sets": [
{
"file_name": "data/bone.n6c10.max.bbk",
"file_type": "bbk",
"nbor_cap_type": "int32",
"term_cap_type": "int32",
"grid_info": {
"grid_type": "3D_6C",
"width": 256,
"height": 256,
"depth": 119
}
},
{
"file_name": "data/liver.n6c10.max.bbk",
"file_type": "bbk",
"nbor_cap_type": "int32",
"term_cap_type": "int32",
"grid_info": {
"grid_type": "3D_6C",
"width": 170,
"height": 170,
"depth": 144
}
}
]
}