-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautodetect.tcl
2330 lines (2130 loc) · 104 KB
/
autodetect.tcl
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
################################################################
# This is a generated script based on design: design_1
#
# Though there are limitations about the generated script,
# the main purpose of this utility is to make learning
# IP Integrator Tcl commands easier.
################################################################
namespace eval _tcl {
proc get_script_folder {} {
set script_path [file normalize [info script]]
set script_folder [file dirname $script_path]
return $script_folder
}
}
variable script_folder
set script_folder [_tcl::get_script_folder]
################################################################
# Check if script is running in correct Vivado version.
################################################################
set scripts_vivado_version 2017.4
set current_vivado_version [version -short]
if { [string first $scripts_vivado_version $current_vivado_version] == -1 } {
puts ""
catch {common::send_msg_id "BD_TCL-109" "ERROR" "This script was generated using Vivado <$scripts_vivado_version> and is being run in <$current_vivado_version> of Vivado. Please run the script in Vivado <$scripts_vivado_version> then open the de# Vivado <$current_vivado_version>. Upgrade the design by running \"Tools => Report => Report IP Status...\", then run write_bd_tcl to create an updated script."}
return 1
}
################################################################
# START
################################################################
# To test this script, run the following commands from Vivado Tcl console:
# source design_1_script.tcl
# If there is no project opened, this script will create a
# project, but make sure you do not have an existing project
# <./myproj/project_1.xpr> in the current working folder.
set list_projs [get_projects -quiet]
if { $list_projs eq "" } {
create_project project_1 myproj -part xczu9eg-ffvb1156-2-e
set_property BOARD_PART xilinx.com:zcu102:part0:3.1 [current_project]
}
# CHANGE DESIGN NAME HERE
variable design_name
set design_name design_1
# If you do not already have an existing IP Integrator design open,
# you can create a design using the following command:
# create_bd_design $design_name
# Creating design if needed
set errMsg ""
set nRet 0
set cur_design [current_bd_design -quiet]
set list_cells [get_bd_cells -quiet]
if { ${design_name} eq "" } {
# USE CASES:
# 1) Design_name not set
set errMsg "Please set the variable <design_name> to a non-empty value."
set nRet 1
} elseif { ${cur_design} ne "" && ${list_cells} eq "" } {
# USE CASES:
# 2): Current design opened AND is empty AND names same.
# 3): Current design opened AND is empty AND names diff; design_name NOT in project.
# 4): Current design opened AND is empty AND names diff; design_name exists in project.
if { $cur_design ne $design_name } {
common::send_msg_id "BD_TCL-001" "INFO" "Changing value of <design_name> from <$design_name> to <$cur_design> since current design is empty."
set design_name [get_property NAME $cur_design]
}
common::send_msg_id "BD_TCL-002" "INFO" "Constructing de# IPI design <$cur_design>..."
} elseif { ${cur_design} ne "" && $list_cells ne "" && $cur_design eq $design_name } {
# USE CASES:
# 5) Current design opened AND has components AND same names.
set errMsg "Design <$design_name> already exists in your project, please set the variable <design_name> to another value."
set nRet 1
} elseif { [get_files -quiet ${design_name}.bd] ne "" } {
# USE CASES:
# 6) Current opened design, has components, but diff names, design_name exists in project.
# 7) No opened design, design_name exists in project.
set errMsg "Design <$design_name> already exists in your project, please set the variable <design_name> to another value."
set nRet 2
} else {
# USE CASES:
# 8) No opened design, design_name not in project.
# 9) Current opened design, has components, but diff names, design_name not in project.
common::send_msg_id "BD_TCL-003" "INFO" "Currently there is no design <$design_name> in project, so creating one..."
create_bd_design $design_name
common::send_msg_id "BD_TCL-004" "INFO" "Making design <$design_name> as current_bd_design."
current_bd_design $design_name
}
# Add USER_COMMENTS on $design_name
set_property USER_COMMENTS.comment_1 "Enter Comments here" [get_bd_designs $design_name]
common::send_msg_id "BD_TCL-005" "INFO" "Currently the variable <design_name> is equal to \"$design_name\"."
if { $nRet != 0 } {
catch {common::send_msg_id "BD_TCL-114" "ERROR" $errMsg}
return $nRet
}
set bCheckIPsPassed 1
##################################################################
# CHECK IPs
##################################################################
set bCheckIPs 1
if { $bCheckIPs == 1 } {
set list_check_ips "\
xilinx.com:ip:c_shift_ram:12.0\
xilinx.com:ip:floating_point:7.1\
xilinx.com:ip:c_addsub:12.0\
xilinx.com:ip:util_vector_logic:2.0\
xilinx.com:ip:xlslice:1.0\
"
set list_ips_missing ""
common::send_msg_id "BD_TCL-006" "INFO" "Checking if the following IPs exist in the project's IP catalog: $list_check_ips ."
foreach ip_vlnv $list_check_ips {
set ip_obj [get_ipdefs -all $ip_vlnv]
if { $ip_obj eq "" } {
lappend list_ips_missing $ip_vlnv
}
}
if { $list_ips_missing ne "" } {
catch {common::send_msg_id "BD_TCL-115" "ERROR" "The following IPs are not found in the IP Catalog:\n $list_ips_missing\n\nResolution: Please add the repository containing the IP(s) to the project." }
set bCheckIPsPassed 0
}
}
if { $bCheckIPsPassed != 1 } {
common::send_msg_id "BD_TCL-1003" "WARNING" "Will not continue with creation of design due to the error(s) above."
return 3
}
##################################################################
# DESIGN PROCs
##################################################################
# Procedure to create entire design; Provide argument to make
# procedure reusable. If parentCell is "", will use root.
proc create_root_design { parentCell } {
variable script_folder
variable design_name
if { $parentCell eq "" } {
set parentCell [get_bd_cells /]
}
# Get object for parentCell
set parentObj [get_bd_cells $parentCell]
if { $parentObj == "" } {
catch {common::send_msg_id "BD_TCL-100" "ERROR" "Unable to find parent cell <$parentCell>!"}
return
}
# Make sure parentObj is hier blk
set parentType [get_property TYPE $parentObj]
if { $parentType ne "hier" } {
catch {common::send_msg_id "BD_TCL-101" "ERROR" "Parent <$parentObj> has TYPE = <$parentType>. Expected to be <hier>."}
return
}
# Save current instance; Restore later
set oldCurInst [current_bd_instance .]
# Set parent object as current
current_bd_instance $parentObj
# Create interface ports
# Create ports
set CLK2 [ create_bd_port -dir I -type clk CLK2 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {design_1_CLK} \
CONFIG.FREQ_HZ {100000000} \
] $CLK2
set a [ create_bd_port -dir O -from 23 -to 0 -type data a ]
set b [ create_bd_port -dir O -from 23 -to 0 -type data b ]
set c [ create_bd_port -dir O -from 23 -to 0 -type data c ]
set d [ create_bd_port -dir O -from 23 -to 0 -type data d ]
set e [ create_bd_port -dir O -from 23 -to 0 -type data e ]
set edge_in [ create_bd_port -dir I -from 23 -to 0 -type data edge_in ]
set eol [ create_bd_port -dir I -from 0 -to 0 -type data eol ]
set pattern_ok [ create_bd_port -dir O -from 0 -to 0 pattern_ok ]
set t_0 [ create_bd_port -dir I -from 31 -to 0 t_0 ]
set t_1 [ create_bd_port -dir I -from 31 -to 0 t_1 ]
set t_2 [ create_bd_port -dir I -from 31 -to 0 t_2 ]
set t_3 [ create_bd_port -dir I -from 31 -to 0 t_3 ]
set t_4 [ create_bd_port -dir I -from 31 -to 0 t_4 ]
set t_5 [ create_bd_port -dir I -from 31 -to 0 t_5 ]
set t_6 [ create_bd_port -dir I -from 31 -to 0 t_6 ]
set t_7 [ create_bd_port -dir I -from 31 -to 0 t_7 ]
set t_8 [ create_bd_port -dir I -from 31 -to 0 t_8 ]
set t_9 [ create_bd_port -dir I -from 31 -to 0 t_9 ]
set t_A [ create_bd_port -dir I -from 31 -to 0 t_A ]
set t_B [ create_bd_port -dir I -from 31 -to 0 t_B ]
set t_C [ create_bd_port -dir I -from 31 -to 0 t_C ]
set t_D [ create_bd_port -dir I -from 31 -to 0 t_D ]
set t_E [ create_bd_port -dir I -from 31 -to 0 t_E ]
set thresh [ create_bd_port -dir I -from 31 -to 0 thresh ]
set valid_in [ create_bd_port -dir I -type ce valid_in ]
set valid_out [ create_bd_port -dir O -from 0 -to 0 -type data valid_out ]
# Create instance: c_shift_ram_0, and set properties
set c_shift_ram_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:c_shift_ram:12.0 c_shift_ram_0 ]
set_property -dict [ list \
CONFIG.AsyncInitVal {00000000000000000000000000000000} \
CONFIG.DefaultData {00000000000000000000000000000000} \
CONFIG.Depth {11} \
CONFIG.SyncInitVal {00000000000000000000000000000000} \
CONFIG.Width {32} \
] $c_shift_ram_0
# Create instance: c_shift_ram_1, and set properties
set c_shift_ram_1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:c_shift_ram:12.0 c_shift_ram_1 ]
set_property -dict [ list \
CONFIG.AsyncInitVal {00000000000000000000000000000000} \
CONFIG.DefaultData {00000000000000000000000000000000} \
CONFIG.Depth {2} \
CONFIG.SyncInitVal {00000000000000000000000000000000} \
CONFIG.Width {32} \
] $c_shift_ram_1
# Create instance: cr_0, and set properties
set cr_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_0 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_0
# Create instance: cr_1, and set properties
set cr_1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_1 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_1
# Create instance: cr_2, and set properties
set cr_2 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_2 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_2
# Create instance: cr_3, and set properties
set cr_3 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_3 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_3
# Create instance: cr_4, and set properties
set cr_4 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_4 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_4
# Create instance: cr_11, and set properties
set cr_11 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_11 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_11
# Create instance: cr_12, and set properties
set cr_12 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_12 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_12
# Create instance: cr_13, and set properties
set cr_13 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_13 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_13
# Create instance: cr_14, and set properties
set cr_14 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_14 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_14
# Create instance: cr_15, and set properties
set cr_15 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_15 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_15
# Create instance: cr_16, and set properties
set cr_16 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_16 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_16
# Create instance: cr_17, and set properties
set cr_17 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_17 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_17
# Create instance: cr_18, and set properties
set cr_18 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_18 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_18
# Create instance: cr_19, and set properties
set cr_19 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_19 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_19
# Create instance: cr_20, and set properties
set cr_20 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 cr_20 ]
set_property -dict [ list \
CONFIG.C_Latency {28} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Divide} \
CONFIG.Result_Precision_Type {Single} \
] $cr_20
# Create instance: floating_point_0, and set properties
set floating_point_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_0 ]
set_property -dict [ list \
CONFIG.C_Compare_Operation {Less_Than_Or_Equal} \
CONFIG.C_Latency {2} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {1} \
CONFIG.C_Result_Fraction_Width {0} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Compare} \
CONFIG.Result_Precision_Type {Custom} \
] $floating_point_0
# Create instance: floating_point_1, and set properties
set floating_point_1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_1 ]
set_property -dict [ list \
CONFIG.C_Compare_Operation {Less_Than} \
CONFIG.C_Latency {2} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {1} \
CONFIG.C_Result_Fraction_Width {0} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Compare} \
CONFIG.Result_Precision_Type {Custom} \
] $floating_point_1
# Create instance: floating_point_2, and set properties
set floating_point_2 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_2 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_2
# Create instance: floating_point_3, and set properties
set floating_point_3 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_3 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_3
# Create instance: floating_point_4, and set properties
set floating_point_4 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_4 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_4
# Create instance: floating_point_5, and set properties
set floating_point_5 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_5 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_5
# Create instance: floating_point_6, and set properties
set floating_point_6 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_6 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_6
# Create instance: floating_point_7, and set properties
set floating_point_7 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_7 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_7
# Create instance: floating_point_8, and set properties
set floating_point_8 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_8 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_8
# Create instance: floating_point_9, and set properties
set floating_point_9 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_9 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_9
# Create instance: floating_point_10, and set properties
set floating_point_10 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_10 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_10
# Create instance: floating_point_11, and set properties
set floating_point_11 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_11 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_11
# Create instance: floating_point_12, and set properties
set floating_point_12 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_12 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_12
# Create instance: floating_point_13, and set properties
set floating_point_13 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_13 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_13
# Create instance: floating_point_14, and set properties
set floating_point_14 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_14 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_14
# Create instance: floating_point_15, and set properties
set floating_point_15 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_15 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_15
# Create instance: floating_point_16, and set properties
set floating_point_16 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_16 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_16
# Create instance: floating_point_17, and set properties
set floating_point_17 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_17 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_17
# Create instance: floating_point_18, and set properties
set floating_point_18 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_18 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_18
# Create instance: floating_point_19, and set properties
set floating_point_19 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_19 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_19
# Create instance: floating_point_20, and set properties
set floating_point_20 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_20 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_20
# Create instance: floating_point_21, and set properties
set floating_point_21 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_21 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_21
# Create instance: floating_point_22, and set properties
set floating_point_22 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_22 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_22
# Create instance: floating_point_23, and set properties
set floating_point_23 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_23 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_23
# Create instance: floating_point_24, and set properties
set floating_point_24 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_24 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_24
# Create instance: floating_point_25, and set properties
set floating_point_25 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_25 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_25
# Create instance: floating_point_26, and set properties
set floating_point_26 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_26 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_26
# Create instance: floating_point_27, and set properties
set floating_point_27 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_27 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_27
# Create instance: floating_point_28, and set properties
set floating_point_28 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_28 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_28
# Create instance: floating_point_29, and set properties
set floating_point_29 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_29 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_29
# Create instance: floating_point_30, and set properties
set floating_point_30 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_30 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_30
# Create instance: floating_point_31, and set properties
set floating_point_31 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_31 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Subtract} \
CONFIG.C_Latency {11} \
CONFIG.C_Mult_Usage {Full_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Add_Subtract} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_31
# Create instance: floating_point_32, and set properties
set floating_point_32 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_32 ]
set_property -dict [ list \
CONFIG.C_Latency {0} \
CONFIG.C_Mult_Usage {No_Usage} \
CONFIG.C_Rate {1} \
CONFIG.C_Result_Exponent_Width {8} \
CONFIG.C_Result_Fraction_Width {24} \
CONFIG.Has_RESULT_TREADY {false} \
CONFIG.Operation_Type {Absolute} \
CONFIG.Result_Precision_Type {Single} \
] $floating_point_32
# Create instance: floating_point_33, and set properties
set floating_point_33 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_33 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_33
# Create instance: floating_point_34, and set properties
set floating_point_34 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_34 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_34
# Create instance: floating_point_35, and set properties
set floating_point_35 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_35 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_35
# Create instance: floating_point_36, and set properties
set floating_point_36 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_36 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_36
# Create instance: floating_point_37, and set properties
set floating_point_37 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_37 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_37
# Create instance: floating_point_38, and set properties
set floating_point_38 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_38 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_38
# Create instance: floating_point_39, and set properties
set floating_point_39 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_39 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_39
# Create instance: floating_point_40, and set properties
set floating_point_40 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_40 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_40
# Create instance: floating_point_41, and set properties
set floating_point_41 [ create_bd_cell -type ip -vlnv xilinx.com:ip:floating_point:7.1 floating_point_41 ]
set_property -dict [ list \
CONFIG.Add_Sub_Value {Add} \
CONFIG.C_Latency {11} \
CONFIG.Flow_Control {NonBlocking} \
CONFIG.Has_RESULT_TREADY {false} \
] $floating_point_41