-
Notifications
You must be signed in to change notification settings - Fork 2
/
golden_data_final.json
1487 lines (1487 loc) · 46.2 KB
/
golden_data_final.json
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
{
"design137_50_37_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "2514 sec",
"DFFs": "17889",
"LUTs": "16604",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "571",
"Fmax": "146.513 MHz",
"LUT_CLB_ratio": "29.07880910683012",
"CLB_percentage_used": "13.108356290174472",
"FLE_Percentage_used": "13.07105142332415",
"Wirelength_Percentage_used": "3.3912825213899076",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "1538209 ms",
"Packer_time": "72765 ms",
"Placer_time": "213 ms",
"Router_time": "152143 ms",
"Bitstream_time": "410534 ms"
}
},
"mux_8_1": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "14 sec",
"DFFs": "0",
"LUTs": "3",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "219.503 MHz",
"LUT_CLB_ratio": "3.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "1.0416666666666667",
"Wirelength_Percentage_used": "0.23674242424242425",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "5725 ms",
"Packer_time": "538 ms",
"Placer_time": "148 ms",
"Router_time": "1095 ms",
"Bitstream_time": "3392 ms"
}
},
"mux_8_1_a": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "13 sec",
"DFFs": "0",
"LUTs": "3",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "210.451 MHz",
"LUT_CLB_ratio": "3.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "1.0416666666666667",
"Wirelength_Percentage_used": "0.2709385521885522",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "6011 ms",
"Packer_time": "507 ms",
"Placer_time": "124 ms",
"Router_time": "1055 ms",
"Bitstream_time": "3374 ms"
}
},
"motion_estimator": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1141 sec",
"DFFs": "899",
"LUTs": "1700",
"BRAMs": "23",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "177",
"Fmax": "156.697 MHz",
"LUT_CLB_ratio": "9.6045197740113",
"CLB_percentage_used": "4.0633608815427",
"FLE_Percentage_used": "4.049012855831037",
"Wirelength_Percentage_used": "2.4514725568942435",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "259771 ms",
"Packer_time": "46017 ms",
"Placer_time": "237 ms",
"Router_time": "159539 ms",
"Bitstream_time": "367720 ms"
}
},
"ucsb_152_tap_fir": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1691 sec",
"DFFs": "13468",
"LUTs": "8179",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "2595",
"CLBs": "1387",
"Fmax": "140.261 MHz",
"LUT_CLB_ratio": "5.89689978370584",
"CLB_percentage_used": "31.841138659320478",
"FLE_Percentage_used": "31.82105142332415",
"Wirelength_Percentage_used": "11.53354359466853",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "656902 ms",
"Packer_time": "90627 ms",
"Placer_time": "228 ms",
"Router_time": "198917 ms",
"Bitstream_time": "365483 ms"
}
},
"design49_10_200_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1251 sec",
"DFFs": "2710",
"LUTs": "2250",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "188",
"Fmax": "174.594 MHz",
"LUT_CLB_ratio": "11.96808510638298",
"CLB_percentage_used": "4.315886134067952",
"FLE_Percentage_used": "4.287190082644628",
"Wirelength_Percentage_used": "0.7134516326174263",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "438069 ms",
"Packer_time": "45225 ms",
"Placer_time": "166 ms",
"Router_time": "153746 ms",
"Bitstream_time": "323984 ms"
}
},
"design153_60_60_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1410 sec",
"DFFs": "4784",
"LUTs": "3396",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "74",
"Fmax": "143.568 MHz",
"LUT_CLB_ratio": "45.891891891891895",
"CLB_percentage_used": "1.6988062442607896",
"FLE_Percentage_used": "1.693067033976125",
"Wirelength_Percentage_used": "0.43029909493044644",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "668956 ms",
"Packer_time": "28881 ms",
"Placer_time": "146 ms",
"Router_time": "132551 ms",
"Bitstream_time": "292667 ms"
}
},
"sha_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "2922 sec",
"DFFs": "8645",
"LUTs": "25189",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "2304",
"CLBs": "2717",
"Fmax": "50.92 MHz",
"LUT_CLB_ratio": "9.270887007729113",
"CLB_percentage_used": "62.37373737373737",
"FLE_Percentage_used": "62.365128558310374",
"Wirelength_Percentage_used": "25.838999112391594",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "1668126 ms",
"Packer_time": "79454 ms",
"Placer_time": "156 ms",
"Router_time": "244314 ms",
"Bitstream_time": "363167 ms"
}
},
"wb_conmax": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1794 sec",
"DFFs": "2978",
"LUTs": "9376",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1170",
"Fmax": "98.9413 MHz",
"LUT_CLB_ratio": "8.013675213675214",
"CLB_percentage_used": "26.859504132231404",
"FLE_Percentage_used": "26.85376492194674",
"Wirelength_Percentage_used": "10.701183356614866",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "959693 ms",
"Packer_time": "56754 ms",
"Placer_time": "307051 ms",
"Router_time": "133587 ms",
"Bitstream_time": "303130 ms"
}
},
"design3_5_5_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "53 sec",
"DFFs": "373",
"LUTs": "150",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "30",
"Fmax": "225.191 MHz",
"LUT_CLB_ratio": "5.0",
"CLB_percentage_used": "83.33333333333334",
"FLE_Percentage_used": "80.90277777777777",
"Wirelength_Percentage_used": "8.472748316498317",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "36676 ms",
"Packer_time": "1745 ms",
"Placer_time": "165 ms",
"Router_time": "2418 ms",
"Bitstream_time": "6368 ms"
}
},
"design151_40_40_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "2389 sec",
"DFFs": "18510",
"LUTs": "20291",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1700",
"Fmax": "107.488 MHz",
"LUT_CLB_ratio": "11.935882352941176",
"CLB_percentage_used": "39.02662993572085",
"FLE_Percentage_used": "39.02376033057851",
"Wirelength_Percentage_used": "10.309171468482626",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "1269817 ms",
"Packer_time": "69390 ms",
"Placer_time": "156 ms",
"Router_time": "160400 ms",
"Bitstream_time": "563546 ms"
}
},
"b19": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "3909 sec",
"DFFs": "5753",
"LUTs": "23991",
"BRAMs": "0",
"DSPs": "14",
"Adder_Carry": "2996",
"CLBs": "2786",
"Fmax": "50.3106 MHz",
"LUT_CLB_ratio": "8.61127063890883",
"CLB_percentage_used": "63.957759412304874",
"FLE_Percentage_used": "63.94915059687787",
"Wirelength_Percentage_used": "26.09786973982888",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "2842106 ms",
"Packer_time": "100929 ms",
"Placer_time": "186 ms",
"Router_time": "172118 ms",
"Bitstream_time": "339240 ms"
}
},
"AES_DECRYPT": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1440 sec",
"DFFs": "337",
"LUTs": "1327",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "150",
"Fmax": "150.76 MHz",
"LUT_CLB_ratio": "8.846666666666666",
"CLB_percentage_used": "3.443526170798898",
"FLE_Percentage_used": "3.429178145087236",
"Wirelength_Percentage_used": "1.2089572056341307",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "654091 ms",
"Packer_time": "27835 ms",
"Placer_time": "175 ms",
"Router_time": "143964 ms",
"Bitstream_time": "324953 ms"
}
},
"design168_45_40_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1729 sec",
"DFFs": "14027",
"LUTs": "12920",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "222",
"Fmax": "160.261 MHz",
"LUT_CLB_ratio": "58.1981981981982",
"CLB_percentage_used": "5.096418732782369",
"FLE_Percentage_used": "5.090679522497704",
"Wirelength_Percentage_used": "1.3259559979046622",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "932645 ms",
"Packer_time": "39170 ms",
"Placer_time": "154 ms",
"Router_time": "129824 ms",
"Bitstream_time": "343227 ms"
}
},
"fft_fir_filter": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Fail",
"error_msg": "SYN: Design fft_fir_filter_02_24 synthesis failed",
"Runtime": "1848 sec",
"DFFs": "0",
"LUTs": "14047",
"BRAMs": "0",
"DSPs": "4",
"Adder_Carry": "0",
"CLBs": "0",
"Fmax": "0",
"LUT_CLB_ratio": "0",
"CLB_percentage_used": "0",
"FLE_Percentage_used": "0",
"Wirelength_Percentage_used": "0",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "1838879 ms",
"Packer_time": "0",
"Placer_time": "0",
"Router_time": "0",
"Bitstream_time": "0"
}
},
"rom": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "14 sec",
"DFFs": "0",
"LUTs": "0",
"BRAMs": "1",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "432.3 MHz",
"LUT_CLB_ratio": "0.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "0.6944444444444444",
"Wirelength_Percentage_used": "0.22095959595959597",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "1566 ms",
"Packer_time": "959 ms",
"Placer_time": "207 ms",
"Router_time": "2017 ms",
"Bitstream_time": "5567 ms"
}
},
"add_1bit": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "13 sec",
"DFFs": "0",
"LUTs": "1",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "256.42 MHz",
"LUT_CLB_ratio": "1.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "0.3472222222222222",
"Wirelength_Percentage_used": "0.07365319865319865",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "5612 ms",
"Packer_time": "529 ms",
"Placer_time": "135 ms",
"Router_time": "1103 ms",
"Bitstream_time": "3271 ms"
}
},
"shift_register": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "14 sec",
"DFFs": "8",
"LUTs": "10",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "2",
"Fmax": "386.522 MHz",
"LUT_CLB_ratio": "5.0",
"CLB_percentage_used": "5.555555555555555",
"FLE_Percentage_used": "3.125",
"Wirelength_Percentage_used": "0.34459175084175087",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "6064 ms",
"Packer_time": "548 ms",
"Placer_time": "125 ms",
"Router_time": "1140 ms",
"Bitstream_time": "3394 ms"
}
},
"and2": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "13 sec",
"DFFs": "0",
"LUTs": "1",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "256.42 MHz",
"LUT_CLB_ratio": "1.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "0.3472222222222222",
"Wirelength_Percentage_used": "0.07365319865319865",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "5492 ms",
"Packer_time": "501 ms",
"Placer_time": "134 ms",
"Router_time": "1115 ms",
"Bitstream_time": "3323 ms"
}
},
"and8": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "14 sec",
"DFFs": "0",
"LUTs": "2",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "220.634 MHz",
"LUT_CLB_ratio": "2.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "0.6944444444444444",
"Wirelength_Percentage_used": "0.13152356902356901",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "5720 ms",
"Packer_time": "518 ms",
"Placer_time": "134 ms",
"Router_time": "1218 ms",
"Bitstream_time": "3429 ms"
}
},
"design40_100_100_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "4956 sec",
"DFFs": "4182",
"LUTs": "1117",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "124",
"Fmax": "126.024 MHz",
"LUT_CLB_ratio": "9.008064516129032",
"CLB_percentage_used": "2.846648301193756",
"FLE_Percentage_used": "2.835169880624426",
"Wirelength_Percentage_used": "0.6883967027530411",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "4315450 ms",
"Packer_time": "27298 ms",
"Placer_time": "135 ms",
"Router_time": "113014 ms",
"Bitstream_time": "262294 ms"
}
},
"design87_33_50_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "4045 sec",
"DFFs": "55509",
"LUTs": "53509",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "3485",
"Fmax": "130.08 MHz",
"LUT_CLB_ratio": "15.354088952654232",
"CLB_percentage_used": "80.00459136822772",
"FLE_Percentage_used": "79.99598255280074",
"Wirelength_Percentage_used": "11.171724943251267",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "654602 ms",
"Packer_time": "163606 ms",
"Placer_time": "135 ms",
"Router_time": "305214 ms",
"Bitstream_time": "2461783 ms"
}
},
"design150_30_40_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1945 sec",
"DFFs": "17324",
"LUTs": "17568",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "699",
"Fmax": "116.324 MHz",
"LUT_CLB_ratio": "25.13304721030043",
"CLB_percentage_used": "16.046831955922865",
"FLE_Percentage_used": "16.03822314049587",
"Wirelength_Percentage_used": "3.987508003026599",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "1099402 ms",
"Packer_time": "52879 ms",
"Placer_time": "186 ms",
"Router_time": "146809 ms",
"Bitstream_time": "354052 ms"
}
},
"design67_15_45_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "373 sec",
"DFFs": "600",
"LUTs": "102",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "28",
"Fmax": "172.117 MHz",
"LUT_CLB_ratio": "3.642857142857143",
"CLB_percentage_used": "77.77777777777779",
"FLE_Percentage_used": "75.0",
"Wirelength_Percentage_used": "9.569654882154882",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "358732 ms",
"Packer_time": "1317 ms",
"Placer_time": "176 ms",
"Router_time": "1875 ms",
"Bitstream_time": "6273 ms"
}
},
"design88_3_3_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "31 sec",
"DFFs": "491",
"LUTs": "316",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "34",
"Fmax": "308.875 MHz",
"LUT_CLB_ratio": "9.294117647058824",
"CLB_percentage_used": "94.44444444444444",
"FLE_Percentage_used": "92.70833333333333",
"Wirelength_Percentage_used": "6.007996632996633",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "14500 ms",
"Packer_time": "1363 ms",
"Placer_time": "196 ms",
"Router_time": "3060 ms",
"Bitstream_time": "6709 ms"
}
},
"or_1bit": {
"bitstream_sim.log": {
"Status": "Fail"
},
"post_route_sim.log": {
"Status": "Pass"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "13 sec",
"DFFs": "0",
"LUTs": "1",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1",
"Fmax": "256.42 MHz",
"LUT_CLB_ratio": "1.0",
"CLB_percentage_used": "2.7777777777777777",
"FLE_Percentage_used": "0.3472222222222222",
"Wirelength_Percentage_used": "0.07365319865319865",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_10x8"
},
"raptor_perf.log": {
"Synthesis_time": "5543 ms",
"Packer_time": "486 ms",
"Placer_time": "135 ms",
"Router_time": "1124 ms",
"Bitstream_time": "3341 ms"
}
},
"design34_70_70_top": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "3001 sec",
"DFFs": "2913",
"LUTs": "633",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "72",
"Fmax": "149.915 MHz",
"LUT_CLB_ratio": "8.791666666666666",
"CLB_percentage_used": "1.6528925619834711",
"FLE_Percentage_used": "1.6356749311294765",
"Wirelength_Percentage_used": "0.3605454426401257",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "2120740 ms",
"Packer_time": "30370 ms",
"Placer_time": "145 ms",
"Router_time": "168140 ms",
"Bitstream_time": "316586 ms"
}
},
"murax": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "1166 sec",
"DFFs": "2389",
"LUTs": "2037",
"BRAMs": "2",
"DSPs": "0",
"Adder_Carry": "64",
"CLBs": "338",
"Fmax": "120.073 MHz",
"LUT_CLB_ratio": "6.0266272189349115",
"CLB_percentage_used": "7.75941230486685",
"FLE_Percentage_used": "7.667584940312213",
"Wirelength_Percentage_used": "2.800604592282172",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "218102 ms",
"Packer_time": "38224 ms",
"Placer_time": "155 ms",
"Router_time": "194473 ms",
"Bitstream_time": "405568 ms"
}
},
"fully_pipelined_128_aes_algorithm": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "2917 sec",
"DFFs": "2700",
"LUTs": "11349",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "0",
"CLBs": "1293",
"Fmax": "151.748 MHz",
"LUT_CLB_ratio": "8.777262180974478",
"CLB_percentage_used": "29.6831955922865",
"FLE_Percentage_used": "29.674586776859503",
"Wirelength_Percentage_used": "10.767663043478262",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "2175468 ms",
"Packer_time": "38521 ms",
"Placer_time": "358 ms",
"Router_time": "128237 ms",
"Bitstream_time": "288593 ms"
}
},
"cic_decimator": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": "Fail"
},
"raptor.log": {
"Status": "Pass",
"error_msg": null,
"Runtime": "777 sec",
"DFFs": "167",
"LUTs": "290",
"BRAMs": "0",
"DSPs": "0",
"Adder_Carry": "17",
"CLBs": "27",
"Fmax": "234.734 MHz",
"LUT_CLB_ratio": "10.74074074074074",
"CLB_percentage_used": "0.6198347107438017",
"FLE_Percentage_used": "0.6054866850321395",
"Wirelength_Percentage_used": "0.16274336476340143",
"Fabric_netlist_version": "v1.6.49",
"device": "GEMINI_COMPACT_82x68"
},
"raptor_perf.log": {
"Synthesis_time": "31983 ms",
"Packer_time": "34030 ms",
"Placer_time": "197 ms",
"Router_time": "152152 ms",
"Bitstream_time": "293913 ms"
}
},
"dec": {
"bitstream_sim.log": {
"Status": null
},
"post_route_sim.log": {
"Status": null
},
"raptor.log": {
"Status": "Fail",