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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
package firrtlTests
package transforms
import firrtl.annotations.{CircuitName, ComponentName, ModuleName}
import firrtl.transforms.{GroupAnnotation, GroupComponents}
class GroupComponentsSpec extends LowTransformSpec {
def transform = new GroupComponents()
val top = "Top"
def topComp(name: String): ComponentName = ComponentName(name, ModuleName(top, CircuitName(top)))
"The register r" should "be grouped" in {
val input =
s"""circuit $top :
| module $top :
| input clk: Clock
| input data: UInt<16>
| output out: UInt<16>
| reg r: UInt<16>, clk
| r <= data
| out <= r
""".stripMargin
val groups = Seq(
GroupAnnotation(Seq(topComp("r")), "MyReg", "rInst", Some("_OUT"), Some("_IN"))
)
val check =
s"""circuit Top :
| module $top :
| input clk: Clock
| input data: UInt<16>
| output out: UInt<16>
| inst rInst of MyReg
| rInst.clk_IN <= clk
| out <= rInst.r_OUT
| rInst.data_IN <= data
| module MyReg :
| input clk_IN: Clock
| output r_OUT: UInt<16>
| input data_IN: UInt<16>
| reg r: UInt<16>, clk_IN
| r_OUT <= r
| r <= data_IN
""".stripMargin
execute(input, check, groups)
}
"The two sets of instances" should "be grouped" in {
val input =
s"""circuit $top :
| module $top :
| output out: UInt<16>
| inst c1a of Const1A
| inst c2a of Const2A
| inst c1b of Const1B
| inst c2b of Const2B
| node asum = add(c1a.out, c2a.out)
| node bsum = add(c1b.out, c2b.out)
| out <= add(asum, bsum)
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
""".stripMargin
val groups = Seq(
GroupAnnotation(Seq(topComp("c1a"), topComp("c2a")/*, topComp("asum")*/), "A", "cA", Some("_OUT"), Some("_IN")),
GroupAnnotation(Seq(topComp("c1b"), topComp("c2b")/*, topComp("bsum")*/), "B", "cB", Some("_OUT"), Some("_IN"))
)
val check =
s"""circuit Top :
| module $top :
| output out: UInt<16>
| inst cA of A
| inst cB of B
| node asum = add(cA.c1a_out_OUT, cA.c2a_out_OUT)
| node bsum = add(cB.c1b_out_OUT, cB.c2b_out_OUT)
| out <= add(asum, bsum)
| module A :
| output c1a_out_OUT: UInt<8>
| output c2a_out_OUT: UInt<8>
| inst c1a of Const1A
| inst c2a of Const2A
| c1a_out_OUT <= c1a.out
| c2a_out_OUT <= c2a.out
| module B :
| output c1b_out_OUT: UInt<8>
| output c2b_out_OUT: UInt<8>
| inst c1b of Const1B
| inst c2b of Const2B
| c1b_out_OUT <= c1b.out
| c2b_out_OUT <= c2b.out
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
""".stripMargin
execute(input, check, groups)
}
"The two sets of instances" should "be grouped with their nodes" in {
val input =
s"""circuit $top :
| module $top :
| output out: UInt<16>
| inst c1a of Const1A
| inst c2a of Const2A
| inst c1b of Const1B
| inst c2b of Const2B
| node asum = add(c1a.out, c2a.out)
| node bsum = add(c1b.out, c2b.out)
| out <= add(asum, bsum)
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
""".stripMargin
val groups = Seq(
GroupAnnotation(Seq(topComp("c1a"), topComp("c2a"), topComp("asum")), "A", "cA", Some("_OUT"), Some("_IN")),
GroupAnnotation(Seq(topComp("c1b"), topComp("c2b"), topComp("bsum")), "B", "cB", Some("_OUT"), Some("_IN"))
)
val check =
s"""circuit Top :
| module $top :
| output out: UInt<16>
| inst cA of A
| inst cB of B
| out <= add(cA.asum_OUT, cB.bsum_OUT)
| module A :
| output asum_OUT: UInt<9>
| inst c1a of Const1A
| inst c2a of Const2A
| node asum = add(c1a.out, c2a.out)
| asum_OUT <= asum
| module B :
| output bsum_OUT: UInt<9>
| inst c1b of Const1B
| inst c2b of Const2B
| node bsum = add(c1b.out, c2b.out)
| bsum_OUT <= bsum
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
""".stripMargin
execute(input, check, groups)
}
"The two sets of instances" should "be grouped with one not grouped" in {
val input =
s"""circuit $top :
| module $top :
| output out: UInt<16>
| inst c1a of Const1A
| inst c2a of Const2A
| inst c1b of Const1B
| inst c2b of Const2B
| node asum = add(c1a.out, c2a.out)
| node bsum = add(c1b.out, c2b.out)
| inst pass of PassThrough
| pass.in <= add(asum, bsum)
| out <= pass.out
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
| module PassThrough :
| input in: UInt
| output out: UInt
| out <= in
""".stripMargin
val groups = Seq(
GroupAnnotation(Seq(topComp("c1a"), topComp("c2a"), topComp("asum")), "A", "cA", Some("_OUT"), Some("_IN")),
GroupAnnotation(Seq(topComp("c1b"), topComp("c2b"), topComp("bsum")), "B", "cB", Some("_OUT"), Some("_IN"))
)
val check =
s"""circuit Top :
| module $top :
| output out: UInt<16>
| inst cA of A
| inst cB of B
| inst pass of PassThrough
| out <= pass.out
| pass.in <= add(cA.asum_OUT, cB.bsum_OUT)
| module A :
| output asum_OUT: UInt<9>
| inst c1a of Const1A
| inst c2a of Const2A
| node asum = add(c1a.out, c2a.out)
| asum_OUT <= asum
| module B :
| output bsum_OUT: UInt<9>
| inst c1b of Const1B
| inst c2b of Const2B
| node bsum = add(c1b.out, c2b.out)
| bsum_OUT <= bsum
| module Const1A :
| output out: UInt<8>
| out <= UInt(1)
| module Const2A :
| output out: UInt<8>
| out <= UInt(2)
| module Const1B :
| output out: UInt<8>
| out <= UInt(1)
| module Const2B :
| output out: UInt<8>
| out <= UInt(2)
| module PassThrough :
| input in: UInt<10>
| output out: UInt<10>
| out <= in
""".stripMargin
execute(input, check, groups)
}
"The two sets of instances" should "be grouped with a connection between them" in {
val input =
s"""circuit $top :
| module $top :
| input in: UInt<16>
| output out: UInt<16>
| node first = in
| node second = not(first)
| out <= second
""".stripMargin
val groups = Seq(
GroupAnnotation(Seq(topComp("first")), "First", "first"),
GroupAnnotation(Seq(topComp("second")), "Second", "second")
)
val check =
s"""circuit $top :
| module $top :
| input in: UInt<16>
| output out: UInt<16>
| inst first_0 of First
| inst second_0 of Second
| first_0.in <= in
| second_0.first <= first_0.first_0
| out <= second_0.second_0
| module First :
| input in: UInt<16>
| output first_0: UInt<16>
| node first = in
| first_0 <= first
| module Second :
| input first: UInt<16>
| output second_0: UInt<16>
| node second = not(first)
| second_0 <= second
""".stripMargin
execute(input, check, groups)
}
}
|