Skip to content

Commit ab5e054

Browse files
committed
disabling p2p designs for u25 and u30 platforms
1 parent e2dfc1e commit ab5e054

File tree

12 files changed

+40
-4
lines changed

12 files changed

+40
-4
lines changed

host/p2p_bandwidth/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ endif
138138
ifeq ($(findstring _u25_, $(DEVICE)), _u25_)
139139
$(error This example is not supported for $(DEVICE))
140140
endif
141+
ifeq ($(findstring u30, $(DEVICE)), u30)
142+
$(error This example is not supported for $(DEVICE))
143+
endif
141144
ifeq ($(findstring u200, $(DEVICE)), u200)
142145
$(error This example is not supported for $(DEVICE))
143146
endif

host/p2p_bandwidth/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Platforms containing following strings in their names are not supported for this
1717
zc
1818
vck
1919
_u25_
20+
u30
2021
u200
2122
u250
2223
u50

host/p2p_bandwidth/description.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"zc",
2626
"vck",
2727
"_u25_",
28+
"u30",
2829
"u200",
2930
"u250",
3031
"u50",
@@ -35,6 +36,7 @@
3536
"zc",
3637
"vck",
3738
"_u25_",
39+
"u30",
3840
"u200",
3941
"u250",
4042
"u50",

host/p2p_fpga2fpga/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@ endif
160160
ifeq ($(findstring u50, $(DEVICE)), u50)
161161
$(error This example is not supported for $(DEVICE))
162162
endif
163+
ifeq ($(findstring _u25_, $(DEVICE)), _u25_)
164+
$(error This example is not supported for $(DEVICE))
165+
endif
166+
ifeq ($(findstring u30, $(DEVICE)), u30)
167+
$(error This example is not supported for $(DEVICE))
168+
endif
163169

164170
ifeq ($(TARGET),$(filter $(TARGET),sw_emu hw_emu))
165171
$(CP) $(EMCONFIG_DIR)/emconfig.json .

host/p2p_fpga2fpga/README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Platforms containing following strings in their names are not supported for this
2020
vck
2121
aws
2222
u50
23+
_u25_
24+
u30
2325

2426
DESIGN FILES
2527
------------

host/p2p_fpga2fpga/description.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,19 @@
2626
"2018",
2727
"vck",
2828
"aws",
29-
"u50"
29+
"u50",
30+
"_u25_",
31+
"u30"
3032
],
3133
"platform_blacklist": [
3234
"zc",
3335
"201910",
3436
"2018",
3537
"vck",
3638
"aws",
37-
"u50"
39+
"u50",
40+
"_u25_",
41+
"u30"
3842
],
3943
"runtime": [
4044
"OpenCL"

host/p2p_fpga2fpga_bandwidth/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@ endif
146146
ifeq ($(findstring u50, $(DEVICE)), u50)
147147
$(error This example is not supported for $(DEVICE))
148148
endif
149+
ifeq ($(findstring _u25_, $(DEVICE)), _u25_)
150+
$(error This example is not supported for $(DEVICE))
151+
endif
152+
ifeq ($(findstring u30, $(DEVICE)), u30)
153+
$(error This example is not supported for $(DEVICE))
154+
endif
149155

150156
ifeq ($(TARGET),$(filter $(TARGET),sw_emu hw_emu))
151157
$(CP) $(EMCONFIG_DIR)/emconfig.json .

host/p2p_fpga2fpga_bandwidth/README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Platforms containing following strings in their names are not supported for this
2020
vck
2121
aws
2222
u50
23+
_u25_
24+
u30
2325

2426
DESIGN FILES
2527
------------

host/p2p_fpga2fpga_bandwidth/description.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,19 @@
2222
"2018",
2323
"vck",
2424
"aws",
25-
"u50"
25+
"u50",
26+
"_u25_",
27+
"u30"
2628
],
2729
"platform_blacklist": [
2830
"zc",
2931
"201910",
3032
"2018",
3133
"vck",
3234
"aws",
33-
"u50"
35+
"u50",
36+
"_u25_",
37+
"u30"
3438
],
3539
"runtime": [
3640
"OpenCL"

host/p2p_simple/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ endif
136136
ifeq ($(findstring _u25_, $(DEVICE)), _u25_)
137137
$(error This example is not supported for $(DEVICE))
138138
endif
139+
ifeq ($(findstring u30, $(DEVICE)), u30)
140+
$(error This example is not supported for $(DEVICE))
141+
endif
139142
ifeq ($(findstring u200, $(DEVICE)), u200)
140143
$(error This example is not supported for $(DEVICE))
141144
endif

0 commit comments

Comments
 (0)