Skip to content

Commit 6841d86

Browse files
Bhaskar VishnuVardhan ChebroluGitHub Enterprise
authored andcommitted
disabled u250 for AML and gemm designs
1 parent 51ee73b commit 6841d86

File tree

6 files changed

+11
-2
lines changed

6 files changed

+11
-2
lines changed

library_examples/anti_money_laundering/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ endif
150150
ifeq ($(findstring u280, $(DEVICE)), u280)
151151
$(error This example is not supported for $(DEVICE))
152152
endif
153+
ifeq ($(findstring u250, $(DEVICE)), u250)
154+
$(error This example is not supported for $(DEVICE))
155+
endif
153156
ifeq ($(findstring zc, $(DEVICE)), zc)
154157
$(error This example is not supported for $(DEVICE))
155158
endif

library_examples/anti_money_laundering/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Platforms containing following strings in their names are not supported for this
1313
_u25_
1414
u50
1515
u280
16+
u250
1617
zc
1718
vck
1819

library_examples/anti_money_laundering/description.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"flow": "vitis",
77
"platform_type": "pcie",
88
"platform_whitelist": [
9-
"u250",
109
"aws"
1110
],
1211
"platform_blacklist": [
1312
"_u25_",
1413
"u50",
1514
"u280",
15+
"u250",
1616
"zc",
1717
"vck"
1818
],

library_examples/gemm/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ endif
155155
ifeq ($(findstring vck, $(DEVICE)), vck)
156156
$(error This example is not supported for $(DEVICE))
157157
endif
158+
ifeq ($(findstring u250, $(DEVICE)), u250)
159+
$(error This example is not supported for $(DEVICE))
160+
endif
158161

159162
ifeq ($(TARGET),$(filter $(TARGET),sw_emu hw_emu))
160163
$(CP) $(EMCONFIG_DIR)/emconfig.json .

library_examples/gemm/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Platforms containing following strings in their names are not supported for this
1313
u50
1414
zc
1515
vck
16+
u250
1617

1718
DESIGN FILES
1819
------------

library_examples/gemm/description.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"platform_blacklist": [
1313
"u50",
1414
"zc",
15-
"vck"
15+
"vck",
16+
"u250"
1617
],
1718
"runtime": [
1819
"OpenCL"

0 commit comments

Comments
 (0)