-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathYoDawg_preroute.twr
1911 lines (1846 loc) · 166 KB
/
YoDawg_preroute.twr
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
--------------------------------------------------------------------------------
Release 14.7 Trace (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/trce -intstyle ise -v 3 -s 3 -n
3 -fastpaths -xml YoDawg_preroute.twx YoDawg_map.ncd -o YoDawg_preroute.twr
YoDawg.pcf -ucf YoDawg.ucf
Design file: YoDawg_map.ncd
Physical constraint file: YoDawg.pcf
Device,package,speed: xc7a100t,csg324,C,-3 (PRODUCTION 1.10 2013-10-13)
Report level: verbose report
Environment Variable Effect
-------------------- ------
NONE No environment variables were set
--------------------------------------------------------------------------------
INFO:Timing:3412 - To improve timing, see the Timing Closure User Guide (UG612).
INFO:Timing:2752 - To get complete path coverage, use the unconstrained paths
option. All paths that are not constrained will be reported in the
unconstrained paths section(s) of the report.
INFO:Timing:3284 - This timing report was generated using estimated delay
information. For accurate numbers, please refer to the post Place and Route
timing report.
INFO:Timing:3339 - The clock-to-out numbers in this timing report are based on
a 50 Ohm transmission line loading model. For the details of this model,
and for more information on accounting for different loading conditions,
please see the device datasheet.
================================================================================
Timing constraint: NET "Clk_100M_BUFGP/IBUFG" PERIOD = 10 ns HIGH 5 ns;
For more information, see Period Analysis in the Timing Closure User Guide (UG612).
265608266446177861632 paths analyzed, 18262 endpoints analyzed, 5027 failing endpoints
5027 timing errors detected. (5025 setup errors, 2 hold errors, 0 component switching limit errors)
Minimum period is 31.106ns.
--------------------------------------------------------------------------------
Paths for end point MandelbrotGen0/Z_im_254 (SLICE_X48Y92.CIN), 10555589314555054080 paths
--------------------------------------------------------------------------------
Slack (setup path): -21.106ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_254 (FF)
Requirement: 10.000ns
Data Path Delay: 31.071ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns
Source Clock: Clk_100M_BUFGP rising at 0.000ns
Destination Clock: Clk_100M_BUFGP rising at 10.000ns
Clock Uncertainty: 0.035ns
Clock Uncertainty: 0.035ns ((TSJ^2 + TIJ^2)^1/2 + DJ) / 2 + PE
Total System Jitter (TSJ): 0.070ns
Total Input Jitter (TIJ): 0.000ns
Discrete Jitter (DJ): 0.000ns
Phase Error (PE): 0.000ns
Maximum Data Path at Slow Process Corner: MandelbrotGen0/Z_re_1 to MandelbrotGen0/Z_im_254
Location Delay type Delay(ns) Physical Resource
Logical Resource(s)
------------------------------------------------- -------------------
SLICE_X53Y34.DQ Tcko 0.341 MandelbrotGen0/Z_re<1>
MandelbrotGen0/Z_re_1
SLICE_X7Y47.B2 net (fanout=263) e 1.653 MandelbrotGen0/Z_re<1>
SLICE_X7Y47.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
MandelbrotGen0/Mmult_n0085_Madd87_lut<4>
MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
SLICE_X82Y51.A6 net (fanout=1) e 1.766 MandelbrotGen0/Mmult_n0085_Madd_8787
SLICE_X82Y51.COUT Topcya 0.492 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
MandelbrotGen0/Mmult_n0085_Madd170_lut<8>
MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.DMUX Tcind 0.371 MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
SLICE_X1Y5.B5 net (fanout=2) e 2.607 MandelbrotGen0/Mmult_n0085_Madd_94170
SLICE_X1Y5.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
MandelbrotGen0/Mmult_n0085_Madd213_lut<19>
MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
SLICE_X84Y53.B6 net (fanout=1) e 2.588 MandelbrotGen0/Mmult_n0085_Madd_98213
SLICE_X84Y53.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
MandelbrotGen0/Mmult_n0085_Madd234_lut<23>
MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
SLICE_X5Y19.B5 net (fanout=2) e 2.547 MandelbrotGen0/Mmult_n0085_Madd_110270
SLICE_X5Y19.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
MandelbrotGen0/Mmult_n0085_Madd245_lut<51>
MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
SLICE_X74Y88.B6 net (fanout=1) e 2.713 MandelbrotGen0/Mmult_n0085_Madd_114250
SLICE_X74Y88.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
MandelbrotGen0/Mmult_n0085_Madd250_lut<55>
MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
SLICE_X11Y59.B5 net (fanout=2) e 2.352 MandelbrotGen0/Mmult_n0085_Madd_178250
SLICE_X11Y59.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
MandelbrotGen0/Mmult_n0085_Madd253_lut<178>
MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X57Y150.B6 net (fanout=1) e 2.342 MandelbrotGen0/Mmult_n0085_Madd_214258
SLICE_X57Y150.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
MandelbrotGen0/Mmult_n0085_Madd254_lut<214>
MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
SLICE_X48Y84.B6 net (fanout=2) e 1.611 MandelbrotGen0/n0085<222>
SLICE_X48Y84.COUT Topcyb 0.509 MandelbrotGen0/Z_im<224>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_lut<222>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.COUT Tbyp 0.089 MandelbrotGen0/Z_im<228>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.COUT Tbyp 0.089 MandelbrotGen0/Z_im<232>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.COUT Tbyp 0.089 MandelbrotGen0/Z_im<236>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.COUT Tbyp 0.089 MandelbrotGen0/Z_im<240>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.COUT Tbyp 0.089 MandelbrotGen0/Z_im<244>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.COUT Tbyp 0.089 MandelbrotGen0/Z_im<248>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.COUT Tbyp 0.089 MandelbrotGen0/Z_im<252>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CLK Tcinck 0.174 MandelbrotGen0/Z_im<255>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_xor<255>
MandelbrotGen0/Z_im_254
------------------------------------------------- ---------------------------
Total 31.071ns (10.892ns logic, 20.179ns route)
(35.1% logic, 64.9% route)
--------------------------------------------------------------------------------
Slack (setup path): -21.106ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_254 (FF)
Requirement: 10.000ns
Data Path Delay: 31.071ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns
Source Clock: Clk_100M_BUFGP rising at 0.000ns
Destination Clock: Clk_100M_BUFGP rising at 10.000ns
Clock Uncertainty: 0.035ns
Clock Uncertainty: 0.035ns ((TSJ^2 + TIJ^2)^1/2 + DJ) / 2 + PE
Total System Jitter (TSJ): 0.070ns
Total Input Jitter (TIJ): 0.000ns
Discrete Jitter (DJ): 0.000ns
Phase Error (PE): 0.000ns
Maximum Data Path at Slow Process Corner: MandelbrotGen0/Z_re_1 to MandelbrotGen0/Z_im_254
Location Delay type Delay(ns) Physical Resource
Logical Resource(s)
------------------------------------------------- -------------------
SLICE_X53Y34.DQ Tcko 0.341 MandelbrotGen0/Z_re<1>
MandelbrotGen0/Z_re_1
SLICE_X7Y47.B2 net (fanout=263) e 1.653 MandelbrotGen0/Z_re<1>
SLICE_X7Y47.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
MandelbrotGen0/Mmult_n0085_Madd87_lut<4>
MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
SLICE_X82Y51.A6 net (fanout=1) e 1.766 MandelbrotGen0/Mmult_n0085_Madd_8787
SLICE_X82Y51.COUT Topcya 0.492 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
MandelbrotGen0/Mmult_n0085_Madd170_lut<8>
MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.DMUX Tcind 0.371 MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
SLICE_X1Y5.B5 net (fanout=2) e 2.607 MandelbrotGen0/Mmult_n0085_Madd_94170
SLICE_X1Y5.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
MandelbrotGen0/Mmult_n0085_Madd213_lut<19>
MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
SLICE_X84Y53.B6 net (fanout=1) e 2.588 MandelbrotGen0/Mmult_n0085_Madd_98213
SLICE_X84Y53.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
MandelbrotGen0/Mmult_n0085_Madd234_lut<23>
MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
SLICE_X5Y19.B5 net (fanout=2) e 2.547 MandelbrotGen0/Mmult_n0085_Madd_110270
SLICE_X5Y19.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
MandelbrotGen0/Mmult_n0085_Madd245_lut<51>
MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
SLICE_X74Y88.B6 net (fanout=1) e 2.713 MandelbrotGen0/Mmult_n0085_Madd_114250
SLICE_X74Y88.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
MandelbrotGen0/Mmult_n0085_Madd250_lut<55>
MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
SLICE_X11Y59.B5 net (fanout=2) e 2.352 MandelbrotGen0/Mmult_n0085_Madd_178250
SLICE_X11Y59.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
MandelbrotGen0/Mmult_n0085_Madd253_lut<178>
MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X11Y69.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X11Y69.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd253_cy<220>
MandelbrotGen0/Mmult_n0085_Madd253_cy<220>
SLICE_X57Y151.B6 net (fanout=1) e 2.342 MandelbrotGen0/Mmult_n0085_Madd_218253
SLICE_X57Y151.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
MandelbrotGen0/Mmult_n0085_Madd254_lut<218>
MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
SLICE_X48Y84.B6 net (fanout=2) e 1.611 MandelbrotGen0/n0085<222>
SLICE_X48Y84.COUT Topcyb 0.509 MandelbrotGen0/Z_im<224>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_lut<222>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.COUT Tbyp 0.089 MandelbrotGen0/Z_im<228>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.COUT Tbyp 0.089 MandelbrotGen0/Z_im<232>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.COUT Tbyp 0.089 MandelbrotGen0/Z_im<236>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.COUT Tbyp 0.089 MandelbrotGen0/Z_im<240>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.COUT Tbyp 0.089 MandelbrotGen0/Z_im<244>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.COUT Tbyp 0.089 MandelbrotGen0/Z_im<248>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.COUT Tbyp 0.089 MandelbrotGen0/Z_im<252>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CLK Tcinck 0.174 MandelbrotGen0/Z_im<255>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_xor<255>
MandelbrotGen0/Z_im_254
------------------------------------------------- ---------------------------
Total 31.071ns (10.892ns logic, 20.179ns route)
(35.1% logic, 64.9% route)
--------------------------------------------------------------------------------
Slack (setup path): -21.106ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_254 (FF)
Requirement: 10.000ns
Data Path Delay: 31.071ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns
Source Clock: Clk_100M_BUFGP rising at 0.000ns
Destination Clock: Clk_100M_BUFGP rising at 10.000ns
Clock Uncertainty: 0.035ns
Clock Uncertainty: 0.035ns ((TSJ^2 + TIJ^2)^1/2 + DJ) / 2 + PE
Total System Jitter (TSJ): 0.070ns
Total Input Jitter (TIJ): 0.000ns
Discrete Jitter (DJ): 0.000ns
Phase Error (PE): 0.000ns
Maximum Data Path at Slow Process Corner: MandelbrotGen0/Z_re_1 to MandelbrotGen0/Z_im_254
Location Delay type Delay(ns) Physical Resource
Logical Resource(s)
------------------------------------------------- -------------------
SLICE_X53Y34.DQ Tcko 0.341 MandelbrotGen0/Z_re<1>
MandelbrotGen0/Z_re_1
SLICE_X7Y47.B2 net (fanout=263) e 1.653 MandelbrotGen0/Z_re<1>
SLICE_X7Y47.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
MandelbrotGen0/Mmult_n0085_Madd87_lut<4>
MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
SLICE_X82Y51.A6 net (fanout=1) e 1.766 MandelbrotGen0/Mmult_n0085_Madd_8787
SLICE_X82Y51.COUT Topcya 0.492 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
MandelbrotGen0/Mmult_n0085_Madd170_lut<8>
MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.DMUX Tcind 0.371 MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
SLICE_X1Y5.B5 net (fanout=2) e 2.607 MandelbrotGen0/Mmult_n0085_Madd_94170
SLICE_X1Y5.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
MandelbrotGen0/Mmult_n0085_Madd213_lut<19>
MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
SLICE_X84Y53.B6 net (fanout=1) e 2.588 MandelbrotGen0/Mmult_n0085_Madd_98213
SLICE_X84Y53.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
MandelbrotGen0/Mmult_n0085_Madd234_lut<23>
MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
SLICE_X5Y19.B5 net (fanout=2) e 2.547 MandelbrotGen0/Mmult_n0085_Madd_110270
SLICE_X5Y19.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
MandelbrotGen0/Mmult_n0085_Madd245_lut<51>
MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
SLICE_X74Y88.B6 net (fanout=1) e 2.713 MandelbrotGen0/Mmult_n0085_Madd_114250
SLICE_X74Y88.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
MandelbrotGen0/Mmult_n0085_Madd250_lut<55>
MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
SLICE_X11Y59.B5 net (fanout=2) e 2.352 MandelbrotGen0/Mmult_n0085_Madd_178250
SLICE_X11Y59.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
MandelbrotGen0/Mmult_n0085_Madd253_lut<178>
MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X57Y150.B6 net (fanout=1) e 2.342 MandelbrotGen0/Mmult_n0085_Madd_214258
SLICE_X57Y150.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
MandelbrotGen0/Mmult_n0085_Madd254_lut<214>
MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X48Y83.B6 net (fanout=2) e 1.611 MandelbrotGen0/n0085<218>
SLICE_X48Y83.COUT Topcyb 0.509 MandelbrotGen0/Z_im<220>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_lut<218>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<220>
SLICE_X48Y84.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<220>
SLICE_X48Y84.COUT Tbyp 0.089 MandelbrotGen0/Z_im<224>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.COUT Tbyp 0.089 MandelbrotGen0/Z_im<228>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.COUT Tbyp 0.089 MandelbrotGen0/Z_im<232>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.COUT Tbyp 0.089 MandelbrotGen0/Z_im<236>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.COUT Tbyp 0.089 MandelbrotGen0/Z_im<240>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.COUT Tbyp 0.089 MandelbrotGen0/Z_im<244>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.COUT Tbyp 0.089 MandelbrotGen0/Z_im<248>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.COUT Tbyp 0.089 MandelbrotGen0/Z_im<252>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CLK Tcinck 0.174 MandelbrotGen0/Z_im<255>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_xor<255>
MandelbrotGen0/Z_im_254
------------------------------------------------- ---------------------------
Total 31.071ns (10.892ns logic, 20.179ns route)
(35.1% logic, 64.9% route)
--------------------------------------------------------------------------------
Paths for end point MandelbrotGen0/Z_im_255 (SLICE_X48Y92.CIN), 10555589314555054080 paths
--------------------------------------------------------------------------------
Slack (setup path): -21.056ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_255 (FF)
Requirement: 10.000ns
Data Path Delay: 31.021ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns
Source Clock: Clk_100M_BUFGP rising at 0.000ns
Destination Clock: Clk_100M_BUFGP rising at 10.000ns
Clock Uncertainty: 0.035ns
Clock Uncertainty: 0.035ns ((TSJ^2 + TIJ^2)^1/2 + DJ) / 2 + PE
Total System Jitter (TSJ): 0.070ns
Total Input Jitter (TIJ): 0.000ns
Discrete Jitter (DJ): 0.000ns
Phase Error (PE): 0.000ns
Maximum Data Path at Slow Process Corner: MandelbrotGen0/Z_re_1 to MandelbrotGen0/Z_im_255
Location Delay type Delay(ns) Physical Resource
Logical Resource(s)
------------------------------------------------- -------------------
SLICE_X53Y34.DQ Tcko 0.341 MandelbrotGen0/Z_re<1>
MandelbrotGen0/Z_re_1
SLICE_X7Y47.B2 net (fanout=263) e 1.653 MandelbrotGen0/Z_re<1>
SLICE_X7Y47.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
MandelbrotGen0/Mmult_n0085_Madd87_lut<4>
MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
SLICE_X82Y51.A6 net (fanout=1) e 1.766 MandelbrotGen0/Mmult_n0085_Madd_8787
SLICE_X82Y51.COUT Topcya 0.492 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
MandelbrotGen0/Mmult_n0085_Madd170_lut<8>
MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.DMUX Tcind 0.371 MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
SLICE_X1Y5.B5 net (fanout=2) e 2.607 MandelbrotGen0/Mmult_n0085_Madd_94170
SLICE_X1Y5.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
MandelbrotGen0/Mmult_n0085_Madd213_lut<19>
MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
SLICE_X84Y53.B6 net (fanout=1) e 2.588 MandelbrotGen0/Mmult_n0085_Madd_98213
SLICE_X84Y53.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
MandelbrotGen0/Mmult_n0085_Madd234_lut<23>
MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
SLICE_X5Y19.B5 net (fanout=2) e 2.547 MandelbrotGen0/Mmult_n0085_Madd_110270
SLICE_X5Y19.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
MandelbrotGen0/Mmult_n0085_Madd245_lut<51>
MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
SLICE_X74Y88.B6 net (fanout=1) e 2.713 MandelbrotGen0/Mmult_n0085_Madd_114250
SLICE_X74Y88.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
MandelbrotGen0/Mmult_n0085_Madd250_lut<55>
MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
SLICE_X11Y59.B5 net (fanout=2) e 2.352 MandelbrotGen0/Mmult_n0085_Madd_178250
SLICE_X11Y59.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
MandelbrotGen0/Mmult_n0085_Madd253_lut<178>
MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X57Y150.B6 net (fanout=1) e 2.342 MandelbrotGen0/Mmult_n0085_Madd_214258
SLICE_X57Y150.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
MandelbrotGen0/Mmult_n0085_Madd254_lut<214>
MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<216>
SLICE_X57Y151.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
SLICE_X48Y84.B6 net (fanout=2) e 1.611 MandelbrotGen0/n0085<222>
SLICE_X48Y84.COUT Topcyb 0.509 MandelbrotGen0/Z_im<224>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_lut<222>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.COUT Tbyp 0.089 MandelbrotGen0/Z_im<228>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.COUT Tbyp 0.089 MandelbrotGen0/Z_im<232>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.COUT Tbyp 0.089 MandelbrotGen0/Z_im<236>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.COUT Tbyp 0.089 MandelbrotGen0/Z_im<240>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.COUT Tbyp 0.089 MandelbrotGen0/Z_im<244>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.COUT Tbyp 0.089 MandelbrotGen0/Z_im<248>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.COUT Tbyp 0.089 MandelbrotGen0/Z_im<252>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CLK Tcinck 0.124 MandelbrotGen0/Z_im<255>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_xor<255>
MandelbrotGen0/Z_im_255
------------------------------------------------- ---------------------------
Total 31.021ns (10.842ns logic, 20.179ns route)
(35.0% logic, 65.0% route)
--------------------------------------------------------------------------------
Slack (setup path): -21.056ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_255 (FF)
Requirement: 10.000ns
Data Path Delay: 31.021ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns
Source Clock: Clk_100M_BUFGP rising at 0.000ns
Destination Clock: Clk_100M_BUFGP rising at 10.000ns
Clock Uncertainty: 0.035ns
Clock Uncertainty: 0.035ns ((TSJ^2 + TIJ^2)^1/2 + DJ) / 2 + PE
Total System Jitter (TSJ): 0.070ns
Total Input Jitter (TIJ): 0.000ns
Discrete Jitter (DJ): 0.000ns
Phase Error (PE): 0.000ns
Maximum Data Path at Slow Process Corner: MandelbrotGen0/Z_re_1 to MandelbrotGen0/Z_im_255
Location Delay type Delay(ns) Physical Resource
Logical Resource(s)
------------------------------------------------- -------------------
SLICE_X53Y34.DQ Tcko 0.341 MandelbrotGen0/Z_re<1>
MandelbrotGen0/Z_re_1
SLICE_X7Y47.B2 net (fanout=263) e 1.653 MandelbrotGen0/Z_re<1>
SLICE_X7Y47.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
MandelbrotGen0/Mmult_n0085_Madd87_lut<4>
MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd87_cy<6>
SLICE_X7Y48.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
MandelbrotGen0/Mmult_n0085_Madd87_cy<10>
SLICE_X82Y51.A6 net (fanout=1) e 1.766 MandelbrotGen0/Mmult_n0085_Madd_8787
SLICE_X82Y51.COUT Topcya 0.492 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
MandelbrotGen0/Mmult_n0085_Madd170_lut<8>
MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd170_cy<11>
SLICE_X82Y52.DMUX Tcind 0.371 MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
MandelbrotGen0/Mmult_n0085_Madd170_cy<15>
SLICE_X1Y5.B5 net (fanout=2) e 2.607 MandelbrotGen0/Mmult_n0085_Madd_94170
SLICE_X1Y5.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
MandelbrotGen0/Mmult_n0085_Madd213_lut<19>
MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd213_cy<21>
SLICE_X1Y6.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
MandelbrotGen0/Mmult_n0085_Madd213_cy<25>
SLICE_X84Y53.B6 net (fanout=1) e 2.588 MandelbrotGen0/Mmult_n0085_Madd_98213
SLICE_X84Y53.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
MandelbrotGen0/Mmult_n0085_Madd234_lut<23>
MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<25>
SLICE_X84Y54.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<29>
SLICE_X84Y55.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd234_cy<33>
SLICE_X84Y56.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
MandelbrotGen0/Mmult_n0085_Madd234_cy<37>
SLICE_X5Y19.B5 net (fanout=2) e 2.547 MandelbrotGen0/Mmult_n0085_Madd_110270
SLICE_X5Y19.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
MandelbrotGen0/Mmult_n0085_Madd245_lut<51>
MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd245_cy<53>
SLICE_X5Y20.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
MandelbrotGen0/Mmult_n0085_Madd245_cy<57>
SLICE_X74Y88.B6 net (fanout=1) e 2.713 MandelbrotGen0/Mmult_n0085_Madd_114250
SLICE_X74Y88.COUT Topcyb 0.499 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
MandelbrotGen0/Mmult_n0085_Madd250_lut<55>
MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<57>
SLICE_X74Y89.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<61>
SLICE_X74Y90.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<65>
SLICE_X74Y91.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<69>
SLICE_X74Y92.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<73>
SLICE_X74Y93.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<77>
SLICE_X74Y94.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<81>
SLICE_X74Y95.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<85>
SLICE_X74Y96.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<89>
SLICE_X74Y97.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<93>
SLICE_X74Y98.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<97>
SLICE_X74Y99.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<101>
SLICE_X74Y100.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<105>
SLICE_X74Y101.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<109>
SLICE_X74Y102.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<113>
SLICE_X74Y103.COUT Tbyp 0.092 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd250_cy<117>
SLICE_X74Y104.BMUX Tcinb 0.342 MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
MandelbrotGen0/Mmult_n0085_Madd250_cy<121>
SLICE_X11Y59.B5 net (fanout=2) e 2.352 MandelbrotGen0/Mmult_n0085_Madd_178250
SLICE_X11Y59.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
MandelbrotGen0/Mmult_n0085_Madd253_lut<178>
MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<180>
SLICE_X11Y60.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<184>
SLICE_X11Y61.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<188>
SLICE_X11Y62.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<192>
SLICE_X11Y63.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<196>
SLICE_X11Y64.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<200>
SLICE_X11Y65.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<204>
SLICE_X11Y66.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<208>
SLICE_X11Y67.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<212>
SLICE_X11Y68.COUT Tbyp 0.089 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X11Y69.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd253_cy<216>
SLICE_X11Y69.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd253_cy<220>
MandelbrotGen0/Mmult_n0085_Madd253_cy<220>
SLICE_X57Y151.B6 net (fanout=1) e 2.342 MandelbrotGen0/Mmult_n0085_Madd_218253
SLICE_X57Y151.COUT Topcyb 0.509 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
MandelbrotGen0/Mmult_n0085_Madd254_lut<218>
MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.CIN net (fanout=1) e 0.000 MandelbrotGen0/Mmult_n0085_Madd254_cy<220>
SLICE_X57Y152.BMUX Tcinb 0.358 MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
MandelbrotGen0/Mmult_n0085_Madd254_cy<224>
SLICE_X48Y84.B6 net (fanout=2) e 1.611 MandelbrotGen0/n0085<222>
SLICE_X48Y84.COUT Topcyb 0.509 MandelbrotGen0/Z_im<224>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_lut<222>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<224>
SLICE_X48Y85.COUT Tbyp 0.089 MandelbrotGen0/Z_im<228>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<228>
SLICE_X48Y86.COUT Tbyp 0.089 MandelbrotGen0/Z_im<232>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<232>
SLICE_X48Y87.COUT Tbyp 0.089 MandelbrotGen0/Z_im<236>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<236>
SLICE_X48Y88.COUT Tbyp 0.089 MandelbrotGen0/Z_im<240>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<240>
SLICE_X48Y89.COUT Tbyp 0.089 MandelbrotGen0/Z_im<244>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<244>
SLICE_X48Y90.COUT Tbyp 0.089 MandelbrotGen0/Z_im<248>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<248>
SLICE_X48Y91.COUT Tbyp 0.089 MandelbrotGen0/Z_im<252>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CIN net (fanout=1) e 0.000 MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_cy<252>
SLICE_X48Y92.CLK Tcinck 0.124 MandelbrotGen0/Z_im<255>
MandelbrotGen0/Madd_Z_re[254]_C_im[11]_add_13_OUT_xor<255>
MandelbrotGen0/Z_im_255
------------------------------------------------- ---------------------------
Total 31.021ns (10.842ns logic, 20.179ns route)
(35.0% logic, 65.0% route)
--------------------------------------------------------------------------------
Slack (setup path): -21.056ns (requirement - (data path - clock path skew + uncertainty))
Source: MandelbrotGen0/Z_re_1 (FF)
Destination: MandelbrotGen0/Z_im_255 (FF)
Requirement: 10.000ns
Data Path Delay: 31.021ns (Levels of Logic = 51)(Component delays alone exceeds constraint)
Clock Path Skew: 0.000ns