Skip to content

Commit

Permalink
disabled u250 for AML and gemm designs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhaskar VishnuVardhan Chebrolu authored and GitHub Enterprise committed Nov 12, 2020
1 parent 51ee73b commit 6841d86
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions library_examples/anti_money_laundering/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ endif
ifeq ($(findstring u280, $(DEVICE)), u280)
$(error This example is not supported for $(DEVICE))
endif
ifeq ($(findstring u250, $(DEVICE)), u250)
$(error This example is not supported for $(DEVICE))
endif
ifeq ($(findstring zc, $(DEVICE)), zc)
$(error This example is not supported for $(DEVICE))
endif
Expand Down
1 change: 1 addition & 0 deletions library_examples/anti_money_laundering/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Platforms containing following strings in their names are not supported for this
_u25_
u50
u280
u250
zc
vck

Expand Down
2 changes: 1 addition & 1 deletion library_examples/anti_money_laundering/description.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"flow": "vitis",
"platform_type": "pcie",
"platform_whitelist": [
"u250",
"aws"
],
"platform_blacklist": [
"_u25_",
"u50",
"u280",
"u250",
"zc",
"vck"
],
Expand Down
3 changes: 3 additions & 0 deletions library_examples/gemm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ endif
ifeq ($(findstring vck, $(DEVICE)), vck)
$(error This example is not supported for $(DEVICE))
endif
ifeq ($(findstring u250, $(DEVICE)), u250)
$(error This example is not supported for $(DEVICE))
endif

ifeq ($(TARGET),$(filter $(TARGET),sw_emu hw_emu))
$(CP) $(EMCONFIG_DIR)/emconfig.json .
Expand Down
1 change: 1 addition & 0 deletions library_examples/gemm/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Platforms containing following strings in their names are not supported for this
u50
zc
vck
u250

DESIGN FILES
------------
Expand Down
3 changes: 2 additions & 1 deletion library_examples/gemm/description.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"platform_blacklist": [
"u50",
"zc",
"vck"
"vck",
"u250"
],
"runtime": [
"OpenCL"
Expand Down

0 comments on commit 6841d86

Please sign in to comment.