forked from ABKGroup/FakeRAM2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_input_file.cfg
More file actions
94 lines (81 loc) · 1.92 KB
/
example_input_file.cfg
File metadata and controls
94 lines (81 loc) · 1.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#SAMPLE INPUT FILE; VALUES NOT REALISTIC
{
# The process node.
"tech_nm": 7,
# The operating voltage.
"voltage": 0.7,
# String to add in front of every metal layer number for the layer name.
"metal_prefix": "M",
# Horizontal Metal layer for macro pins
"metal_layer": "M4",
# The pin width for signal pins.
"pin_width_nm": 24,
# The minimum pin pitch for signal pins
"pin_pitch_nm": 48,
# Metal track pitch
"metal_track_pitch_nm": 48,
# Manufacturing Grid
"manufacturing_grid_nm": 1,
# Contacted Poly Pitch
"contacted_poly_pitch_nm": 54,
#column mux factor
"column_mux_factor": 1,
# Fin pitch
"fin_pitch_nm" : 27,
# Optional snap the width and height of the sram to a multiple value.
"snap_width_nm": 190,
"snap_height_nm": 1400,
# List of SRAM configurations (name width depth and banks)
"srams": [
{"name": "testram_1rw_32w384d_4_sram",
"width": 32,
"depth": 384,
"banks": 1,
"write_mode": "write_first",
"write_granularity": 4,
"r": 0,
"w": 0,
"rw": [1, "left"]
},
{"name": "testram_1r_16w128d_8_sram",
"width": 16,
"depth": 128,
"banks": 1,
"write_mode": "read_first",
"write_granularity": 8,
"r": [1, "right"],
"w": 0,
"rw": 0
},
{"name": "testram_1w_64w256d_16_sram",
"width": 64,
"depth": 256,
"banks": 1,
"write_mode": "write_first",
"write_granularity": 16,
"r": 0,
"w": [1, "left"],
"rw": 0
},
{"name": "testram_2rw_32w1024d_sram",
"width": 32,
"depth": 1024,
"banks": 1,
"write_mode": "read_first",
"r": 0,
"w": 0,
"rw": [2, "right"]
},
{"name": "testram_1r1w_8w64d_4_sram",
"width": 8,
"depth": 64,
"banks": 1,
"write_mode": "write_first",
"write_granularity": 4,
"r": [1, "left"],
"w": [1, "right"],
"rw": 0
}
]
# TENTATIVE PARAMETERS
}