-
Notifications
You must be signed in to change notification settings - Fork 52
/
runt.toml
692 lines (630 loc) · 17.5 KB
/
runt.toml
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
ver = "0.4.1"
##### Compilation Tests ######
## Test each pass in isolation. Gets the pass flags from a comment on the first line of the file
[[tests]]
name = "[core] passes"
paths = ["tests/passes/**/*.futil"]
# gets the pass flags a comment on the first line of the test file
cmd = """
flags="$(head -n 1 {} | cut -c 3-) -m file"
./target/debug/calyx {} $flags -l . \
| sed 's/extern \".*\\(calyx\\/.*\\)\"/extern \"<ROOT>\\/\\1\"/'
"""
[[tests]]
name = "[core] parsing"
# Round-tripping from the compiler should not change anything.
paths = ["./tests/parsing/*.expect"]
cmd = """
./target/debug/calyx {} -m file -p none -l .
"""
[[tests]]
name = "[core] import"
# Round-tripping from the compiler should not change anything.
paths = ["./tests/import/a.futil"]
cmd = """
./target/debug/calyx {} -p none -l . \
| sed 's/extern \".*\\(calyx\\/.*\\)\"/extern \"<ROOT>\\/\\1\"/'
"""
## Tests the error messages generated by the compiler. Runs passes for error
## checking.
[[tests]]
name = "[core] errors"
paths = [
"tests/errors/*.futil",
"tests/errors/papercut/*.futil",
"tests/errors/parser/*.futil",
"tests/errors/float/*.futil",
]
cmd = """
./target/debug/calyx {} -p well-formed -p papercut -p synthesis-papercut -l . -m file
"""
[[tests]]
name = "[core] futil examples"
paths = ["examples/futil/*.futil"]
cmd = """
./target/debug/calyx {} -m file -l .
"""
##### Backend Tests #####
[[tests]]
name = "[core] backends"
paths = ["tests/backend/**/*.futil"]
cmd = """
flags=$(head -n 1 {} | cut -c 3-)
./target/debug/calyx {} $flags -l .
"""
[[tests]]
name = "yxi tool"
paths = ["yxi/tests/yxi-tool/*.futil"]
cmd = """
./target/debug/yxi {}
"""
[[tests]]
name = "fud2 yxi invocation"
paths = ["yxi/tests/ref-mems-vec-add.futil"]
cmd = """
fud2 {} --from calyx --to yxi
"""
##### Frontend Tests #####
[[tests]]
name = "[frontend] dahlia"
paths = ["tests/frontend/dahlia/*.fuse"]
cmd = """
fud e {} --to calyx -q \
-s calyx.exec './target/debug/calyx' \
| tail -n+2
"""
[[tests]]
name = "[frontend] systolic array"
paths = ["tests/frontend/systolic/array-*.systolic"]
cmd = """
./frontends/systolic-lang/gen-systolic.py {}
"""
[[tests]]
name = "[frontend] NTT pipeline generation"
paths = ["tests/frontend/ntt-pipeline/*.txt"]
cmd = """
fud e --from ntt {} --to calyx -q
"""
[[tests]]
name = "[frontend] relay"
paths = ["tests/frontend/relay/*.relay"]
cmd = "python3 frontends/relay/relay_visitor.py {}"
[[tests]]
name = "[frontend] exp"
paths = ["tests/frontend/exp/*.txt"]
cmd = "python3 calyx-py/calyx/gen_exp.py {}"
[[tests]]
name = "[frontend] queues correctness"
paths = [
"frontends/queues/tests/*.py",
"frontends/queues/tests/round_robin/*.py",
"frontends/queues/tests/strict/*.py",
"frontends/queues/tests/binheap/*.py",
"frontends/queues/tests/binheap/round_robin/*.py",
"frontends/queues/tests/binheap/strict/*.py",
]
cmd = """
name=$(basename {} .py) &&
dir=$(dirname {}) &&
python3 {} 20000 --keepgoing |\
fud e --from calyx --to jq \
--through verilog \
--through dat \
-s verilog.data "$dir/$name.data" \
-s jq.expr ".memories" \
-q
"""
[[tests]]
name = "[frontend] queues sdn no-promote correctness"
paths = ["frontends/queues/tests/sdn.py"]
cmd = """
name=$(basename {} .py) &&
dir=$(dirname {}) &&
python3 {} 20000 --keepgoing |\
fud e --from calyx --to jq \
--through verilog \
--through dat \
-s verilog.data "$dir/$name.data" \
-s calyx.flags ' -d static-promotion' \
-s jq.expr ".memories" \
-q
"""
# A stanza for "non-static with promotion" is unnecessary.
# Such a stanza would have invoked `sdn.py` with no special flags.
# The catch-all queues stanza captures that case.
[[tests]]
name = "[frontend] queues sdn static no promote correctness"
paths = ["frontends/queues/tests/sdn.py"]
cmd = """
name=$(basename {} .py) &&
dir=$(dirname {}) &&
python3 {} 20000 --static --keepgoing |\
fud e --from calyx --to jq \
--through verilog \
--through dat \
-s verilog.data "$dir/$name.data" \
-s calyx.flags ' -d well-formed -d static-promotion' \
-s jq.expr ".memories" \
-q
"""
[[tests]]
name = "[frontend] queues sdn static promote correctness"
paths = ["frontends/queues/tests/sdn.py"]
cmd = """
name=$(basename {} .py) &&
dir=$(dirname {}) &&
python3 {} 20000 --static --keepgoing |\
fud e --from calyx --to jq \
--through verilog \
--through dat \
-s verilog.data "$dir/$name.data" \
-s calyx.flags ' -d well-formed' \
-s jq.expr ".memories" \
-q
"""
[[tests]]
name = "[calyx-py] builder"
paths = ["calyx-py/test/*.py"]
cmd = """
python3 {}
"""
[[tests]]
name = "[calyx-py] correctness"
paths = ["calyx-py/test/correctness/*.py"]
cmd = """
name=$(basename {} .py) &&
dir=$(dirname {}) &&
python3 {} |\
fud e --from calyx --to jq \
--through verilog \
--through dat \
-s verilog.data "$dir/$name.data" \
-s jq.expr ".memories" \
-q
"""
##### Correctness Tests #####
## Tests that ensure that individual control
## constructs have correct behavior when compiled.
[[tests]]
name = "correctness dynamic"
paths = [
"tests/correctness/*.futil",
"tests/correctness/ref-cells/*.futil",
"tests/correctness/sync/*.futil",
"tests/correctness/static-interface/*.futil",
"tests/correctness/ieee754-float/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through verilator \
-s sim.data={}.data \
-s calyx.exec='./target/debug/calyx' \
-s verilog.cycle_limit=500 \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
[[tests]]
name = "correctness dynamic one-hot encoding"
paths = [
"tests/correctness/*.futil",
"tests/correctness/ref-cells/*.futil",
"tests/correctness/sync/*.futil",
"tests/correctness/static-interface/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags='-x tdcc:one-hot-cutoff=500 -d static-promotion' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
[[tests]]
name = "correctness dynamic fsm register duplication"
paths = [
"tests/correctness/*.futil",
"tests/correctness/ref-cells/*.futil",
"tests/correctness/sync/*.futil",
"tests/correctness/static-interface/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags='-x tdcc:duplicate-cutoff=0 -d static-promotion' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
[[tests]]
name = "correctness static timing"
paths = [
"tests/correctness/*.futil",
"tests/correctness/ref-cells/*.futil",
"tests/correctness/skid-buffers/*.futil",
"tests/correctness/static-interface/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
[[tests]]
name = "correctness static timing one-hot encoding"
paths = ["tests/correctness/static-interface/*.futil"]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags='-x static-fsm-opts:one-hot-cutoff=500' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
# Variants of the above but for `--nested` (non-ANF Verilog emission) mode.
[[tests]]
name = "correctness nested"
paths = ["tests/correctness/*.futil"]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s sim.data={}.data \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags=' --nested' \
-s verilog.cycle_limit=500 \
-s jq.expr=".memories" \
{} -q
"""
timeout = 120
# Tests to ensure that static compilation maintains its guarantees
# See: https://github.com/calyxir/calyx/discussions/1331 & https://github.com/calyxir/calyx/issues/1344
[[tests]]
name = "correctness static control"
paths = [
"tests/correctness/static-control/*.futil",
"tests/correctness/static-tree-edge/*.futil",
"tests/correctness/group-static-promotion/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags='-p all -d group2invoke' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
{} -q
"""
timeout = 120
# Tests to ensure static compilation maintains guarantees for one-hot encodings
[[tests]]
name = "correctness static control, one-hot fsms"
paths = [
"tests/correctness/static-control/*.futil",
"tests/correctness/static-tree-edge/*.futil",
"tests/correctness/group-static-promotion/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s calyx.exec='./target/debug/calyx' \
-s calyx.flags='-p all -d group2invoke -x compile-static:one-hot-cutoff=500' \
-s verilog.cycle_limit=500 \
-s sim.data={}.data \
{} -q
"""
timeout = 120
[[tests]]
name = "numeric types correctness and parsing"
paths = [
"tests/correctness/numeric-types/parsing/*.futil",
"tests/correctness/numeric-types/bitnum/*.futil",
"tests/correctness/numeric-types/fixed-point/*.futil",
]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
[[tests]]
name = "correctness test of static islands without static promotion"
paths = ["tests/correctness/static-islands/*.futil"]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s sim.data={}.data \
-s calyx.flags="-d static-promotion" \
-s jq.expr=".memories" \
{} -q
"""
[[tests]]
name = "[frontend] tcam testing"
paths = ["tests/correctness/tcam/*.futil"]
cmd = """
fud2 --from calyx --to jq \
--through icarus \
-s sim.data={}.data \
-s jq.expr=".memories" \
{} -q
"""
[[tests]]
name = "[frontend] systolic array PE correctness"
paths = ["tests/correctness/systolic/pe/*.systolic"]
cmd = """
fud e --from systolic --to jq \
--through verilog \
--through vcd_json \
-s verilog.data {}.data \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
-s jq.file {}.jq \
{} -q
"""
[[tests]]
name = "[frontend] systolic array mmult static correctness"
paths = ["tests/correctness/systolic/mmult-inputs/*.data"]
cmd = """
fud e --from systolic --to jq \
--through verilog \
--through dat \
-s verilog.data {} \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
-s jq.expr ".memories" \
{}_static.systolic -q
"""
expect_dir = "tests/correctness/systolic/mmult-expect"
[[tests]]
name = "[frontend] systolic array mmult dynamic correctness"
paths = ["tests/correctness/systolic/mmult-inputs/*.data"]
cmd = """
fud e --from systolic --to jq \
--through verilog \
--through dat \
-s verilog.data {} \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
-s jq.expr ".memories" \
{}_dynamic.systolic -q
"""
expect_dir = "tests/correctness/systolic/mmult-expect"
[[tests]]
name = "[correctness] `@fast` attribute should not change program behavior"
paths = ["tests/correctness/fast-attr/valid/*.futil"]
cmd = """
fud exec --from calyx --to jq \
--through dat \
--through icarus-verilog \
-s calyx.flags "-p validate -p compile -p lower -d static-promotion" \
-s verilog.data {}.data \
-s jq.expr "." \
{} -q
"""
[[tests]]
name = "[correctness] `@fast` attribute should reject unoptimizable sequences"
paths = ["tests/correctness/fast-attr/invalid/*.futil"]
cmd = """
fud exec --from calyx --to jq \
--through dat \
--through icarus-verilog \
-s calyx.flags "-p validate -p compile -p lower -d static-promotion" \
-s verilog.data {}.data \
-s jq.expr "." \
{} -q
"""
[[tests]]
name = "[frontend] systolic array relu static correctness"
paths = ["tests/correctness/systolic/relu-inputs/*.data"]
cmd = """
fud e --from systolic --to jq \
--through verilog \
--through dat \
-s verilog.data {} \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
-s jq.expr ".memories" \
{}_static.systolic -q
"""
expect_dir = "tests/correctness/systolic/relu-expect"
[[tests]]
name = "[frontend] systolic array relu dynamic correctness"
paths = ["tests/correctness/systolic/relu-inputs/*.data"]
cmd = """
fud e --from systolic --to jq \
--through verilog \
--through dat \
-s verilog.data {} \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
-s jq.expr ".memories" \
{}_dynamic.systolic -q
"""
expect_dir = "tests/correctness/systolic/relu-expect"
[[tests]]
name = "[frontend] systolic array leaky relu correctness"
paths = ["tests/correctness/systolic/leaky-relu/*.systolic"]
cmd = """
fud e --from systolic --to dat \
--through verilog \
-s verilog.data {}.data \
-s calyx.exec './target/debug/calyx' \
-s calyx.flags "-d well-formed" \
{} -q
"""
[[tests]]
name = "[frontend] NTT pipeline correctness"
paths = ["tests/correctness/ntt-pipeline/*.txt"]
cmd = """
fud e --from ntt {} --through verilog --to dat -s verilog.data {}.data -q
"""
[[tests]]
name = "exp correctness"
paths = ["tests/correctness/exp/*.txt"]
cmd = """
python3 calyx-py/calyx/gen_exp.py {} |\
fud e --from calyx --to dat --through verilog -s verilog.data {}.data -q
"""
[[tests]]
name = "[frontend] mrxl correctness"
paths = ["frontends/mrxl/test/*.mrxl"]
expect_dir = "frontends/mrxl/test/expect/simulate_out/"
cmd = """
fud e --from mrxl {} \
--to jq \
--through verilog \
--through dat \
-s mrxl.data {}.data \
-s jq.expr ".memories" \
-q
"""
[[tests]]
name = "[frontend] relay correctness"
paths = ["tests/correctness/relay/*.relay"]
cmd = """
fud e -q {} --from relay --to jq \
--through verilog \
--through dat \
-s verilog.data {}.data \
-s jq.expr ".memories"
"""
## Tests errors that occur at runtime
[[tests]]
name = "runtime errors"
paths = ["tests/errors/runtime/*.futil"]
cmd = """
fud exec -s calyx.exec './target/debug/calyx' \
-s verilog.cycle_limit 500 \
--through verilog \
{} --from calyx --to dat -q 2>&1 | \
grep '%Error' | sed 's/%Error: [^:]*:[^:]*:/%Error:/'
"""
##### Examples #####
[[tests]]
name = "[examples] language tutorial"
paths = ["examples/tutorial/*.futil"]
cmd = """
fud e {} -s verilog.cycle_limit 500 \
--through verilog \
-s verilog.data examples/tutorial/data.json \
--from calyx --to dat -q
"""
[[tests]]
name = "[examples] sync primitives"
paths = ["examples/sync/*.futil"]
cmd = """
fud e {} -s verilog.cycle_limit 500 \
--through verilog \
-s verilog.data {}.data \
--from calyx --to dat -q
"""
[[tests]]
name = "[examples] memory by reference tutorial"
paths = ["examples/futil/memory-by-reference/*.futil"]
cmd = """
fud e {} -s verilog.cycle_limit 500 \
--through verilog \
-s verilog.data {}.data \
--from calyx --to dat -q
"""
[[tests]]
name = "[examples] dahlia examples"
paths = ["examples/dahlia/*.fuse"]
cmd = """
fud e {} -s verilog.cycle_limit 500 \
--through verilog \
-s verilog.data {}.data \
--to dat -q
"""
##### Calyx AXI tests #####
[[tests]]
name = "calyx-py read-write-compute AXI wrapper generation"
paths = ["yxi/tests/axi/read-compute-write/*.yxi"]
cmd = """
python3 yxi/axi-calyx/axi-generator.py {}
"""
[[tests]]
name = "calyx-py dynamic AXI wrapper generation"
paths = ["yxi/tests/axi/dynamic/*.yxi"]
cmd = """
python3 yxi/axi-calyx/dynamic-axi-generator.py {}
"""
#Ignore fud2 stderr for now due to ninja nondeterminism
[[tests]]
name = "fud2 AXI wrapper invocation"
paths = ["yxi/tests/axi/*/*-mem-vec-add.futil"]
cmd = """
dynamic=$(head -n 2 {} | tail -n 1 | cut -c 4-)
fud2 {} --to calyx --through axi-wrapped --set $dynamic 2> /dev/null
"""
[[tests]]
name = "fud2 AXI-wrapped to verilog"
paths = ["yxi/tests/axi/*/*-mem-vec-add-axi-wrapped.futil"]
cmd = """
fud2 {} --from calyx --to verilog-noverify 2> /dev/null
"""
[[tests]]
name = "fud2 cocotb AXI-wrapped xecution"
paths = ["yxi/tests/axi/*/*-mem-vec-add-verilog.v"]
cmd = """
fud2 {} --from verilog-noverify --to cocotb-axi --set sim.data=yxi/tests/axi/vectorized-add.data 2> /dev/null
"""
##### Xilinx Tests ######
[[tests]]
name = "AXI wrapper generation"
paths = ["tests/xilinx/*.futil"]
expect_dir = "tests/xilinx/gen-verilog"
cmd = """
target/debug/calyx {} -b xilinx
"""
[[tests]]
name = "kernel.xml generation"
paths = ["tests/xilinx/*.futil"]
expect_dir = "tests/xilinx/gen-xml"
cmd = """
target/debug/calyx {} -b xilinx-xml
"""
[[tests]]
name = "kernel.xml generation from yxi"
paths = ["yxi/tests/axi/xml/*.yxi"]
cmd = """
python3 yxi/xml/xml_generator.py {}
"""
[[tests]]
name = "Cocotb correctness tests"
paths = [
"tests/xilinx/cocotb/dot-product/",
"tests/xilinx/cocotb/vectorized-add/",
]
cmd = """
mkdir -p {}/hdl && \
dir_name=$(basename {}) && \
fud e -q --from calyx {}/${dir_name}.futil --to synth-verilog -o {}/hdl/main.sv &&\
fud e -q --from calyx {}/${dir_name}.futil --to axi-wrapper -o {}/hdl/toplevel.v
cd {}/../ && \
make --silent -B TEST_PATH={} COCOTB_LOG_LEVEL=CRITICAL |\
grep -E '^Output:' |\
sed 's/Output://g' &&\
make clean && \
rm -f results.xml
"""
### Profiler tests
[[tests]]
name = "profiler"
paths = ["tests/profiler/*.futil"]
cmd = """
bash tools/profiler/get-profile-counts-info.sh {} {}.data STDOUT -d
"""