-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest.sus_errors.txt
More file actions
4885 lines (4843 loc) · 252 KB
/
test.sus_errors.txt
File metadata and controls
4885 lines (4843 loc) · 252 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
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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[INFO sus_compiler::compiler_top] Selecting all parameter-less modules as --top
[INFO sus_compiler::instantiation::instantiator] Instantiated IntToBool #()
[INFO sus_compiler::instantiation::instantiator] Instantiated BoolToInt #()
[INFO sus_compiler::instantiation::instantiator] Instantiated example_md #()
[INFO sus_compiler::instantiation::instantiator] Instantiated multiply_add #()
[INFO sus_compiler::instantiation::instantiator] Instantiated pow17 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated test_pow17 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated fibonnaci #()
[INFO sus_compiler::instantiation::instantiator] Instantiated blur2 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated Tree_Multiply #()
[INFO sus_compiler::instantiation::instantiator] Instantiated Accumulator #()
[INFO sus_compiler::instantiation::instantiator] Instantiated blur #()
[INFO sus_compiler::instantiation::instantiator] Instantiated Unpack4 #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate generative #()
[INFO sus_compiler::instantiation::instantiator] Instantiated add_indices_to_array #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate assignment_producer #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate test_various_assignments #()
[INFO sus_compiler::instantiation::instantiator] Instantiated first_bit_idx_6 #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate multiply_add_with_latencies #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate first_bit_idx_24 #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate permute #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate permute24 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated test_single_wire #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate disjoint_ports #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate undeteriminable_input_latency #()
[INFO sus_compiler::instantiation::instantiator] Instantiated specified_input_latency #()
[INFO sus_compiler::instantiation::instantiator] Instantiated determinable_input_latency #()
[INFO sus_compiler::instantiation::instantiator] Instantiated determinable_because_no_input_output_ports #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate conflicting_latency_declarations #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate bad_cycle #()
[INFO sus_compiler::instantiation::instantiator] Instantiated module_taking_time #()
[INFO sus_compiler::instantiation::instantiator] Instantiated matrix_vector_mul #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate bad_cycle2 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated module_taking_a_lot_of_time #()
[INFO sus_compiler::instantiation::instantiator] Instantiated good_cycle #()
[INFO sus_compiler::instantiation::instantiator] Instantiated input_only #()
[INFO sus_compiler::instantiation::instantiator] Instantiated multiple_inputs_only #()
[INFO sus_compiler::instantiation::instantiator] Instantiated output_only #()
[INFO sus_compiler::instantiation::instantiator] Instantiated multiple_outputs_only #()
[INFO sus_compiler::instantiation::instantiator] Instantiated submodule #()
[INFO sus_compiler::instantiation::instantiator] Instantiated doNothing #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate contains_submodule_submodule #()
[INFO sus_compiler::instantiation::instantiator] Instantiated xor #()
[INFO sus_compiler::instantiation::instantiator] Instantiated use_xor #()
[INFO sus_compiler::instantiation::instantiator] Instantiated fizz_buzz #()
[INFO sus_compiler::instantiation::instantiator] Instantiated mbf_dual #()
[INFO sus_compiler::instantiation::instantiator] Instantiated monotonize_down #()
[INFO sus_compiler::instantiation::instantiator] Instantiated my_mod #()
[INFO sus_compiler::instantiation::instantiator] Instantiated use_my_mod #()
[INFO sus_compiler::instantiation::instantiator] Instantiated submodule_named_ports #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_submodule_named_ports #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate contains_submodule_submodule #()
[INFO sus_compiler::instantiation::instantiator] Instantiated cross_bool #()
[INFO sus_compiler::instantiation::instantiator] Instantiated cross_int #()
[INFO sus_compiler::instantiation::instantiator] Instantiated cross_memory #()
[INFO sus_compiler::instantiation::instantiator] Instantiated offset_backwards #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate dual_port_mem #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_fifo #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate test_separated_domain #()
[INFO sus_compiler::instantiation::instantiator] Instantiated no_port_module #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_no_input_module #()
[INFO sus_compiler::instantiation::instantiator] Instantiated mod_with_unused_interface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate test_write_to_gen_var #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_bad_interface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate sequenceDownFrom #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate sumUpTo #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_test #()
[INFO sus_compiler::instantiation::instantiator] Instantiated tinyTestMod #(beep: 3)
[INFO sus_compiler::instantiation::instantiator] Instantiated tinyTestMod #(beep: 4)
[INFO sus_compiler::instantiation::instantiator] Instantiated testTinyTestMod #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 1)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 3)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 7)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 15)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 31)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 63)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 127)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate tree_add #(WIDTH: 255)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate make_tree_add #()
[INFO sus_compiler::instantiation::instantiator] Instantiated replicate #(T: type int #(FROM: 3, TO: 4), NUM_REPLS: 30)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_replicate #()
[INFO sus_compiler::instantiation::instantiator] Instantiated permute_t #(T: type int #(FROM: 1, TO: 8), SIZE: 8, SOURCES: [3, 2, 4, 5, 1, 2, 7, 6])
[INFO sus_compiler::instantiation::instantiator] Instantiated use_permute #()
[INFO sus_compiler::instantiation::instantiator] Instantiated instruction_decoder #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate run_instruction #()
[INFO sus_compiler::instantiation::instantiator] Instantiated no_main_interface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_no_main_interface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate moduleWithBadDeclaration #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate moduleWithBadInterface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate useModuleWithBadInterface #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate m #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate xyz #()
[INFO sus_compiler::instantiation::instantiator] Instantiated TreeAdd #(WIDTH: 1, FROM: 3, TO: 4)
[INFO sus_compiler::instantiation::instantiator] Instantiated TreeAdd #(WIDTH: 2, FROM: 3, TO: 4)
[INFO sus_compiler::instantiation::instantiator] Instantiated TreeAdd #(WIDTH: 3, FROM: 3, TO: 4)
[INFO sus_compiler::instantiation::instantiator] Instantiated TreeAdd #(WIDTH: 5, FROM: 3, TO: 4)
[INFO sus_compiler::instantiation::instantiator] Instantiated numbersToAddUp #()
[INFO sus_compiler::instantiation::instantiator] Instantiated sized_int_add #(LEFT_SIZE: 4, RIGHT_SIZE: 3, OUTPUT_SIZE: 5)
[INFO sus_compiler::instantiation::instantiator] Instantiated use_sized_int_add #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate implicit_domain_forbidden #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate conflicting_domain_with_port_name #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate make_infinite_type #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate UseDualPortMem #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate example_FIFO #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_Iterator #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate UseBuiltinConstants #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate FailingAssert #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate latency_counting_disjoint_blocks #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate latency_counting_disjoint_blocks_merge_error #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_infer_me #()
[INFO sus_compiler::instantiation::instantiator] Instantiated infer_me #(A: 5)
[INFO sus_compiler::instantiation::instantiator] Instantiated infer_from_local_context #()
[INFO sus_compiler::instantiation::instantiator] Instantiated LatencyOffset #(T: type bool #(), OFFSET: -9)
[INFO sus_compiler::instantiation::instantiator] Instantiated ToBits #(T: type int #(FROM: 0, TO: 6))
[INFO sus_compiler::instantiation::instantiator] Instantiated FromBits #(T: type int #(FROM: 0, TO: 6))
[INFO sus_compiler::instantiation::instantiator] Instantiated FIFO #(T: type int #(FROM: 0, TO: 6), DEPTH: 30, MAY_PUSH_LATENCY: 8)
[INFO sus_compiler::instantiation::instantiator] Instantiated instantiate_fifo #()
[INFO sus_compiler::instantiation::instantiator] Instantiated infer_me #(A: 2)
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate inference_edge_case #()
[INFO sus_compiler::instantiation::instantiator] Instantiated specified_latencies_not_ports_edge_case #()
[INFO sus_compiler::instantiation::instantiator] Instantiated testArrayWrite #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate instantiate_infer_me_with_poison_output #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_MultiStateLoop #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate CombineArray #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate useUnknownLatency #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_infer_me_conflicting_directions #()
[INFO sus_compiler::instantiation::instantiator] Instantiated infer_me_with_delta #(V: -31)
[INFO sus_compiler::instantiation::instantiator] Instantiated use_infer_me_with_delta #()
[INFO sus_compiler::instantiation::instantiator] Instantiated infer_me_with_negative_delta #(V: 31)
[INFO sus_compiler::instantiation::instantiator] Instantiated use_infer_me_with_negative_delta #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_infer_me_inputs_only #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_ranks #()
[INFO sus_compiler::instantiation::instantiator] Instantiated testInts #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_FIFO #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate write_to_generative_through_when #()
[INFO sus_compiler::instantiation::instantiator] Instantiated ToBits #(T: type bool #()[60])
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate InstantiateTransmutes #()
[INFO sus_compiler::instantiation::instantiator] Instantiated ToBits #(T: type int #(FROM: 0, TO: 255)[2])
[INFO sus_compiler::instantiation::instantiator] Instantiated FromBits #(T: type int #(FROM: 0, TO: 65536))
[INFO sus_compiler::instantiation::instantiator] Instantiated Transmute #(T1: type int #(FROM: 0, TO: 255)[2], T2: type int #(FROM: 0, TO: 65536))
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate StraightTransmute #()
[INFO sus_compiler::instantiation::instantiator] Instantiated use_trigger #()
[INFO sus_compiler::instantiation::instantiator] Instantiated use_use_trigger #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate testSlicing #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate wrong_slice_length #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate negative_slice #()
[INFO sus_compiler::instantiation::instantiator] Instantiated multi_slice #()
[INFO sus_compiler::instantiation::instantiator] Instantiated multi_slice_reverse #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate duplicate_port_names #()
[INFO sus_compiler::instantiation::instantiator] Instantiated float_literal #()
[INFO sus_compiler::instantiation::instantiator] Instantiated check_non_inlineds #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate make_when #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_make_when #()
[INFO sus_compiler::instantiation::instantiator] Instantiated Repeat #(T: type bool #(), SIZE: 1)
[INFO sus_compiler::instantiation::instantiator] Instantiated Repeat #(T: type bool #(), SIZE: 2)
[INFO sus_compiler::instantiation::instantiator] Instantiated Repeat #(T: type bool #(), SIZE: 3)
[INFO sus_compiler::instantiation::instantiator] Instantiated test_vivado_bug #()
[INFO sus_compiler::instantiation::instantiator] Instantiated boolean_array_literals #()
[INFO sus_compiler::instantiation::instantiator] Instantiated floats_and_doubles #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate use_module_taking_strings #()
[INFO sus_compiler::instantiation::instantiator] Instantiated UIntToBits #(NUM_BITS: 0)
[INFO sus_compiler::instantiation::instantiator] Instantiated zero_sized_stuffs #()
[INFO sus_compiler::instantiation::instantiator] Instantiated test_all_modulos #()
[INFO sus_compiler::instantiation::instantiator] Instantiated testShifts #()
[INFO sus_compiler::instantiation::instantiator] Instantiated testRemainder #()
[INFO sus_compiler::instantiation::instantiator] Instantiated ModuleWithInitialStates #()
[INFO sus_compiler::instantiation::instantiator] Instantiated TestGenArrayOps #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate NonGenerativeSliceBoundsMustNotICE #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate InstantiatesItself #()
[INFO sus_compiler::instantiation::instantiator] Instantiated ReceiveZerosArray #()
[INFO sus_compiler::instantiation::instantiator] Instantiated TestZerosArrays #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate TestUnknownArraySize #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate TestNextPow2 #()
[INFO sus_compiler::instantiation::instantiator] Instantiated TestSplits #()
[INFO sus_compiler::instantiation::instantiator] Instantiated CountBitsWithSplits #()
[INFO sus_compiler::instantiation::instantiator] Instantiated ModWithDomains #()
[INFO sus_compiler::instantiation::instantiator] Instantiated UseModWithDomains #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate GenerativeCannotHaveLatencyDeclaration #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate try_conflicting_latencies #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate AssignUnset #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate ReadUnsetArrayElem #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate RegressionForBadPort #()
[INFO sus_compiler::instantiation::instantiator] Instantiated IntNarrow #(FROM_I: 5, TO_I: 6, FROM: 0, TO: 1)
[INFO sus_compiler::instantiation::instantiator] Instantiated IntNarrow #(FROM_I: 0, TO_I: 1, FROM: -3, TO: 6)
[INFO sus_compiler::instantiation::instantiator] Instantiated IntNarrowToZero #()
[INFO sus_compiler::instantiation::instantiator] Instantiated NegativeIntLiterals #()
[ERROR sus_compiler::instantiation::instantiator] Failed to instantiate WeirdlyNamedClock #()
[INFO sus_compiler::instantiation::instantiator] Instantiated TwoDomainsWithLatRegs #()
[INFO sus_compiler::instantiation::instantiator] Instantiated LatencyOffset #(T: type bool #(), OFFSET: 3)
[INFO sus_compiler::instantiation::instantiator] Instantiated LatencyOffset #(T: type bool #(), OFFSET: -3)
[INFO sus_compiler::instantiation::instantiator] Instantiated PositiveAndNegativeLatencyOffset #()
Warning: Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
╭─[ test.sus:26:6 ]
│
26 │ int a = pow17(2)
│ ┬
│ ╰── Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:26:6 ]
│
26 │ int a = pow17(2)
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:60:10 ]
│
60 │ gen int a
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:62:11 ]
│
62 │ gen bool b = true
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:63:11 ]
│
63 │ gen bool bb = false
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:115:10 ]
│
115 │ gen int A = 1
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Not Instantiating generative #() due to abstract typing errors
╭─[ test.sus:141:8 ]
│
141 │ module generative {
│ ─────┬────
│ ╰────── Not Instantiating generative #() due to abstract typing errors
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:144:13 ]
│
144 │ gen int[x] ys
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:148:13 ]
│
148 │ gen int[3] ps
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:155:13 ]
│
155 │ gen int[3] xx = a
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: 'i' is read-only
╭─[ test.sus:159:11 ]
│
159 │ if test {i = 5}
│ ┬
│ ╰── 'i' is read-only
│
├─[ test.sus:159:11 ]
│
142 │ interface generative : int#(FROM: 0, TO: 100) i -> int o, int o2
│ ┬
│ ╰── 'i' declared here
─────╯
Error: Some parameters of 'v' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:175:44 ]
│
175 │ interface assignment_producer : -> int v'0, int o'0, bool j'0 }
│ ┬
│ ╰── Some parameters of 'v' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: Some parameters of 'o' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:175:53 ]
│
175 │ interface assignment_producer : -> int v'0, int o'0, bool j'0 }
│ ┬
│ ╰── Some parameters of 'o' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Warning: Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
╭─[ test.sus:178:15 ]
│
178 │ state int[3] st
│ ─┬
│ ╰── Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:178:15 ]
│
178 │ state int[3] st
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:179:7 ]
│
179 │ bool b
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:180:10 ]
│
180 │ reg int a, st[2], reg reg b = assignment_producer()
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Not Instantiating multiply_add_with_latencies #() due to abstract typing errors
╭─[ test.sus:217:8 ]
│
217 │ module multiply_add_with_latencies {
│ ─────────────┬─────────────
│ ╰─────────────── Not Instantiating multiply_add_with_latencies #() due to abstract typing errors
─────╯
Error: A function call expects this to be an interface, but whatever it was the typechecker couldn't resolve
╭─[ test.sus:219:17 ]
│
219 │ int tmp'1 = multiply(a, b)
│ ────┬───
│ ╰───── A function call expects this to be an interface, but whatever it was the typechecker couldn't resolve
─────╯
Error: No Global 'multiply' was found.
╭─[ test.sus:219:17 ]
│
219 │ int tmp'1 = multiply(a, b)
│ ────┬───
│ ╰───── No Global 'multiply' was found.
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:224:43 ]
│
224 │ interface first_bit_idx_24 : bool[24] bits -> int first
│ ──┬─
│ ╰─── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: Some parameters of 'first' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:224:55 ]
│
224 │ interface first_bit_idx_24 : bool[24] bits -> int first
│ ──┬──
│ ╰──── Some parameters of 'first' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: This port is not strongly connected to the strongly connected port cluster 'bits'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
╭─[ test.sus:224:55 ]
│
224 │ interface first_bit_idx_24 : bool[24] bits -> int first
│ ──┬─ ──┬──
│ ╰──────────────── 'bits' declared here
│ │
│ ╰──── This port is not strongly connected to the strongly connected port cluster 'bits'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:225:9 ]
│
225 │ int[4] offsets
│ ───┬───
│ ╰───── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:226:10 ]
│
226 │ bool[4] was_nonzeros
│ ──────┬─────
│ ╰─────── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:228:10 ]
│
228 │ for int i in 0..4 {
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:229:11 ]
│
229 │ bool[6] these_bits
│ ─────┬────
│ ╰────── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:230:11 ]
│
230 │ for int j in 0..6 {
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:234:7 ]
│
234 │ int offset, bool was_nonzero = first_bit_idx_6(these_bits)
│ ───┬──
│ ╰──── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:234:20 ]
│
234 │ int offset, bool was_nonzero = first_bit_idx_6(these_bits)
│ ─────┬─────
│ ╰─────── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: This port is not strongly connected to the strongly connected port cluster 'mbf', 'permuted_mbf'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
╭─[ test.sus:241:63 ]
│
241 │ interface permute : bool[128] mbf, int#(FROM: 0, TO: 100) selected_permutation -> bool[128] permuted_mbf
│ ─┬─ ──────────┬───────── ──────┬─────
│ ╰────────────────────────────────────────────────────────────────────────── 'mbf' declared here
│ │ │
│ ╰───────────────────────────────────── This port is not strongly connected to the strongly connected port cluster 'mbf', 'permuted_mbf'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
│ │
│ ╰─────── 'permuted_mbf' declared here
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:241:63 ]
│
241 │ interface permute : bool[128] mbf, int#(FROM: 0, TO: 100) selected_permutation -> bool[128] permuted_mbf
│ ──────────┬─────────
│ ╰─────────── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Not Instantiating permute24 #() due to abstract typing errors
╭─[ test.sus:247:8 ]
│
247 │ module permute24 {
│ ────┬────
│ ╰────── Not Instantiating permute24 #() due to abstract typing errors
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:248:37 ]
│
248 │ interface permute24 : bool[128] mbf, bool[24] valid_permutes, bool start -> bool[128] permuted_out, bool permuted_out_valid
│ ─┬─
│ ╰─── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:248:51 ]
│
248 │ interface permute24 : bool[128] mbf, bool[24] valid_permutes, bool start -> bool[128] permuted_out, bool permuted_out_valid
│ ───────┬──────
│ ╰──────── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:248:72 ]
│
248 │ interface permute24 : bool[128] mbf, bool[24] valid_permutes, bool start -> bool[128] permuted_out, bool permuted_out_valid
│ ──┬──
│ ╰──── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: Typing Error: writing the output of this expression expects 'int #(FROM: _, TO: _)' but was given 'bool #()[]'
╭─[ test.sus:250:2 ]
│
250 │ state bool[24] stored_valid_permutes = 000000000000000000000000
│ ──────────────────┬─────────────────
│ ╰─────────────────── Typing Error: writing the output of this expression expects 'int #(FROM: _, TO: _)' but was given 'bool #()[]'
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:252:10 ]
│
252 │ gen int aaaaa = 5
│ ──┬──
│ ╰──── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: A function call expects this to be an interface, but found a regular wire
╭─[ test.sus:267:2 ]
│
267 │ aaaaa()
│ ──┬──
│ ╰──── A function call expects this to be an interface, but found a regular wire
─────╯
Error: This port is not strongly connected to the strongly connected port cluster 'a', 'b', 'result'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
╭─[ test.sus:278:107 ]
│
278 │ interface disjoint_ports : int#(FROM: 0, TO: 100) a, int#(FROM: 0, TO: 100) b, int#(FROM: 0, TO: 100) c -> int result
│ ┬ ┬ ┬ ───┬──
│ ╰──────────────────────────────────────────────────────────────────── 'a' declared here
│ │ │ │
│ ╰────────────────────────────────────────── 'b' declared here
│ │ │
│ ╰──────────────── This port is not strongly connected to the strongly connected port cluster 'a', 'b', 'result'.
An input and output port are strongly connected if there is a direct dependency path from the input port to the output port.
Strongly connected ports are also transitive.
If you do not wish to change your design, then 'virtually' connect this port to the strongly connected cluster by explicitly annotating its absolute latency.
│ │
│ ╰──── 'result' declared here
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:278:107 ]
│
278 │ interface disjoint_ports : int#(FROM: 0, TO: 100) a, int#(FROM: 0, TO: 100) b, int#(FROM: 0, TO: 100) c -> int result
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: No Unique assignment for Port Latency. Options are:
- '2 from x'3
- '1 from y'1
Try specifying an explicit latency or rework the module to remove this ambiguity
╭─[ test.sus:284:96 ]
│
284 │ interface undeteriminable_input_latency : int#(FROM: 0, TO: 100) a, int#(FROM: 0, TO: 100) b -> int x, int y
│ ┬ ┬ ┬
│ ╰────────────────── No Unique assignment for Port Latency. Options are:
- '2 from x'3
- '1 from y'1
Try specifying an explicit latency or rework the module to remove this ambiguity
│ │ │
│ ╰───────── 'x' declared here
│ │
│ ╰── 'y' declared here
─────╯
Error: Conflicting specified latency
a'0
-> nio'1 (+1)
-> x'2 (+1)
But this was specified as x'1
╭─[ test.sus:325:86 ]
│
325 │ interface conflicting_latency_declarations : int#(FROM: 0, TO: 100) a'0 -> int x'1
│ ┬ ┬
│ ╰─────────────── 'a' declared here
│ │
│ ╰── Conflicting specified latency
a'0
-> nio'1 (+1)
-> x'2 (+1)
But this was specified as x'1
─────╯
Error: Some parameters of 'r' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:331:59 ]
│
331 │ interface bad_cycle : int#(FROM: 0, TO: 100) a -> int r
│ ┬
│ ╰── Some parameters of 'r' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: Some parameters of 'state_reg' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:332:12 ]
│
332 │ state int state_reg
│ ────┬────
│ ╰────── Some parameters of 'state_reg' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: This instruction is part of a net-positive latency cycle of +1
state_reg'0
-> state_reg'1 (+1)
Which conflicts with the starting latency
╭─[ test.sus:332:12 ]
│
332 │ state int state_reg
│ ────┬────
│ ╰────── This instruction is part of a net-positive latency cycle of +1
state_reg'0
-> state_reg'1 (+1)
Which conflicts with the starting latency
─────╯
Error: Some parameters of '_1' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:335:6 ]
│
335 │ r = state_reg
│ ────┬────
│ ╰────── Some parameters of '_1' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: Some parameters of '_2' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:337:18 ]
│
337 │ reg state_reg = state_reg + a
│ ────┬────
│ ╰────── Some parameters of '_2' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: Some parameters of '_4' were still unknown: int #(FROM: ?, TO: ?)
╭─[ test.sus:337:18 ]
│
337 │ reg state_reg = state_reg + a
│ ──────┬──────
│ ╰──────── Some parameters of '_4' were still unknown: int #(FROM: ?, TO: ?)
─────╯
Error: This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
╭─[ test.sus:360:29 ]
│
360 │ state int#(FROM: 0, TO: 7) test
│ ──┬─
│ ╰─── This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
─────╯
Error: This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
╭─[ test.sus:363:9 ]
│
363 │ test = module_taking_time(test+a)
│ ─────────┬────────
│ ╰────────── This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
─────╯
Error: This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
╭─[ test.sus:363:9 ]
│
363 │ test = module_taking_time(test+a)
│ ─────────┬────────
│ ╰────────── This instruction is part of a net-positive latency cycle of +5
test'0
-> _module_taking_time_i'-5 (-5)
-> _module_taking_time_o'0 (+5)
-> test'5 (+5)
Which conflicts with the starting latency
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:375:34 ]
│
375 │ interface offset_latency : T i'0 -> T o'-5
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:393:33 ]
│
393 │ interface input_only : bool i
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:394:13 ]
│
394 │ state bool loop
│ ──┬─
│ ╰─── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:400:43 ]
│
400 │ interface multiple_inputs_only : bool i'0, bool i2'0
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:400:53 ]
│
400 │ interface multiple_inputs_only : bool i'0, bool i2'0
│ ─┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:401:13 ]
│
401 │ state bool loop
│ ──┬─
│ ╰─── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: 'contains_submodule_submodule' conflicts with other declarations:
╭─[ test.sus:441:8 ]
│
441 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── 'contains_submodule_submodule' conflicts with other declarations:
│
597 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── Conflicts with
─────╯
Warning: Not Instantiating contains_submodule_submodule #() due to abstract typing errors
╭─[ test.sus:441:8 ]
│
441 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── Not Instantiating contains_submodule_submodule #() due to abstract typing errors
─────╯
Error: A function call expects this to be a callable interface, the interface `doNothing` is not callable
╭─[ test.sus:445:2 ]
│
445 │ doNothing()
│ ────┬────
│ ╰────── A function call expects this to be a callable interface, the interface `doNothing` is not callable
│
├─[ test.sus:445:2 ]
│
431 │ module doNothing {}
│ ────┬────
│ ╰────── Field 'doNothing' declared here
─────╯
Warning: Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
╭─[ test.sus:462:7 ]
│
462 │ bool b = xor(true, false)
│ ┬
│ ╰── Clock 'Unconnected_clock_1' has no driver. Non-input clocks require exactly one driving submodule. Defaulting to 'clk'
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:462:7 ]
│
462 │ bool b = xor(true, false)
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Not Instantiating use_submodule_named_ports #() due to abstract typing errors
╭─[ test.sus:583:8 ]
│
583 │ module use_submodule_named_ports {
│ ────────────┬────────────
│ ╰────────────── Not Instantiating use_submodule_named_ports #() due to abstract typing errors
─────╯
Error: No such field 'port_a' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
╭─[ test.sus:590:5 ]
│
590 │ sm.port_a = i
│ ───┬──
│ ╰──── No such field 'port_a' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
│
├─[ test.sus:590:5 ]
│
576 │ module submodule_named_ports {
│ ──────────┬──────────
│ ╰──────────── Module 'submodule_named_ports' defined here. module submodule_named_ports #():
domain default:
interface submodule_named_ports:
input int#(FROM: 0, TO: 100) port_a
input int#(FROM: 0, TO: 100) port_b
->
output int port_c
─────╯
Error: No such field 'port_b' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
╭─[ test.sus:592:5 ]
│
592 │ sm.port_b = i
│ ───┬──
│ ╰──── No such field 'port_b' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
│
├─[ test.sus:592:5 ]
│
576 │ module submodule_named_ports {
│ ──────────┬──────────
│ ╰──────────── Module 'submodule_named_ports' defined here. module submodule_named_ports #():
domain default:
interface submodule_named_ports:
input int#(FROM: 0, TO: 100) port_a
input int#(FROM: 0, TO: 100) port_b
->
output int port_c
─────╯
Error: No such field 'port_c' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
╭─[ test.sus:594:9 ]
│
594 │ o = sm.port_c
│ ───┬──
│ ╰──── No such field 'port_c' on submodule_named_ports #(). Available fields are 'submodule_named_ports'
│
├─[ test.sus:594:9 ]
│
576 │ module submodule_named_ports {
│ ──────────┬──────────
│ ╰──────────── Module 'submodule_named_ports' defined here. module submodule_named_ports #():
domain default:
interface submodule_named_ports:
input int#(FROM: 0, TO: 100) port_a
input int#(FROM: 0, TO: 100) port_b
->
output int port_c
─────╯
Error: 'contains_submodule_submodule' conflicts with other declarations:
╭─[ test.sus:597:8 ]
│
597 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── 'contains_submodule_submodule' conflicts with other declarations:
│
├─[ test.sus:597:8 ]
│
441 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── Conflicts with
─────╯
Warning: Not Instantiating contains_submodule_submodule #() due to abstract typing errors
╭─[ test.sus:597:8 ]
│
597 │ module contains_submodule_submodule {
│ ──────────────┬─────────────
│ ╰─────────────── Not Instantiating contains_submodule_submodule #() due to abstract typing errors
─────╯
Error: A function call expects this to be a callable interface, the interface `doNothing` is not callable
╭─[ test.sus:601:2 ]
│
601 │ doNothing()
│ ────┬────
│ ╰────── A function call expects this to be a callable interface, the interface `doNothing` is not callable
│
├─[ test.sus:601:2 ]
│
431 │ module doNothing {}
│ ────┬────
│ ╰────── Field 'doNothing' declared here
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:608:22 ]
│
608 │ interface in : bool i'0
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:613:40 ]
│
613 │ interface in : int#(FROM: 0, TO: 100) i'0
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:619:31 ]
│
619 │ interface in : bool[20][512] i'0
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:625:39 ]
│
625 │ interface offset_backwards : bool i'0 -> bool o'-5
│ ┬
│ ╰── Unused Variable: This variable does not affect the output ports of this module
─────╯
Warning: Not Instantiating dual_port_mem #() due to abstract typing errors
╭─[ test.sus:629:8 ]
│
629 │ module dual_port_mem {
│ ──────┬──────
│ ╰──────── Not Instantiating dual_port_mem #() due to abstract typing errors
─────╯
Error: Duplicate interface 'write' declaration
╭─[ test.sus:632:12 ]
│
632 │ interface write : bool write, bool[20] wr_data, int#(FROM:0, TO: 511) wr_addr
│ ──┬── ──┬──
│ ╰───────────────── Duplicate interface 'write' declaration
│ │
│ ╰──── port 'write' declared here
─────╯
Error: This declaration conflicts with a previous declaration in the same scope, found interface 'write'
╭─[ test.sus:632:25 ]
│
632 │ interface write : bool write, bool[20] wr_data, int#(FROM:0, TO: 511) wr_addr
│ ──┬── ──┬──
│ ╰───────────────── 'write' declared here
│ │
│ ╰──── This declaration conflicts with a previous declaration in the same scope, found interface 'write'
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:632:25 ]
│
632 │ interface write : bool write, bool[20] wr_data, int#(FROM:0, TO: 511) wr_addr
│ ──┬──
│ ╰──── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: Duplicate interface 'read' declaration
╭─[ test.sus:634:12 ]
│
634 │ interface read : bool read, int#(FROM:0, TO: 511) rd_addr -> bool[20] rd_data
│ ──┬─ ──┬─
│ ╰─────────────── Duplicate interface 'read' declaration
│ │
│ ╰─── port 'read' declared here
─────╯
Error: This declaration conflicts with a previous declaration in the same scope, found interface 'read'
╭─[ test.sus:634:24 ]
│
634 │ interface read : bool read, int#(FROM:0, TO: 511) rd_addr -> bool[20] rd_data
│ ──┬─ ──┬─
│ ╰─────────────── 'read' declared here
│ │
│ ╰─── This declaration conflicts with a previous declaration in the same scope, found interface 'read'
─────╯
Warning: Unused Variable: This variable does not affect the output ports of this module
╭─[ test.sus:634:24 ]
│
634 │ interface read : bool read, int#(FROM:0, TO: 511) rd_addr -> bool[20] rd_data
│ ──┬─
│ ╰─── Unused Variable: This variable does not affect the output ports of this module
─────╯
Error: Can only use conditional bindings on triggers. 'write' is an interface
╭─[ test.sus:636:7 ]
│
636 │ when write {
│ ──┬──
│ ╰──── Can only use conditional bindings on triggers. 'write' is an interface
│
├─[ test.sus:636:7 ]
│
632 │ interface write : bool write, bool[20] wr_data, int#(FROM:0, TO: 511) wr_addr
│ ──┬──
│ ╰──── Interface 'write' defined here
─────╯
Error: Too few bindings. This interface provides 3 read-only bindings, but 0 were provided.
╭─[ test.sus:636:7 ]
│
636 │ when write {
│ ──┬──
│ ╰──── Too few bindings. This interface provides 3 read-only bindings, but 0 were provided.
│
├─[ test.sus:636:7 ]
│
632 │ interface write : bool write, bool[20] wr_data, int#(FROM:0, TO: 511) wr_addr
│ ──┬──
│ ╰──── Interface 'write' defined here
─────╯
Error: No such field 'i' on cross_memory #(). Available fields are 'cross_memory', 'in', 'out'
╭─[ test.sus:641:7 ]
│
641 │ cr_m.i = mem
│ ┬
│ ╰── No such field 'i' on cross_memory #(). Available fields are 'cross_memory', 'in', 'out'
│
├─[ test.sus:641:7 ]
│
618 │ module cross_memory {
│ ──────┬─────
│ ╰─────── Module 'cross_memory' defined here. module cross_memory #():
domain default:
interface in:
input bool[20][512] i'0
interface out:
->
output bool[20][512] o'0
─────╯
Error: Can only use conditional bindings on triggers. 'read' is an interface
╭─[ test.sus:642:7 ]
│
642 │ when read {
│ ──┬─
│ ╰─── Can only use conditional bindings on triggers. 'read' is an interface
│
├─[ test.sus:642:7 ]
│
634 │ interface read : bool read, int#(FROM:0, TO: 511) rd_addr -> bool[20] rd_data
│ ──┬─
│ ╰─── Interface 'read' defined here
─────╯
Error: Too few bindings. This interface provides 1 writable bindings, but 0 were provided.
╭─[ test.sus:642:7 ]
│
642 │ when read {
│ ──┬─
│ ╰─── Too few bindings. This interface provides 1 writable bindings, but 0 were provided.