Skip to content

Commit baf92ab

Browse files
Virat AgarwalGitHub Enterprise
authored andcommitted
Adding _u2_ to blacklist for unsupported designs
1 parent b7c29b6 commit baf92ab

File tree

42 files changed

+74
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+74
-4
lines changed

cpp_kernels/gmem_2banks/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ endif
103103
ifeq ($(findstring samsung, $(DEVICE)), samsung)
104104
$(error [ERROR]: This example is not supported for $(DEVICE).)
105105
endif
106+
ifeq ($(findstring _u2_, $(DEVICE)), _u2_)
107+
$(error [ERROR]: This example is not supported for $(DEVICE).)
108+
endif
106109
ifeq ($(findstring nodma, $(DEVICE)), nodma)
107110
$(error [ERROR]: This example is not supported for $(DEVICE).)
108111
endif

cpp_kernels/gmem_2banks/README.rst

Lines changed: 1 addition & 0 deletions

cpp_kernels/gmem_2banks/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"u30",
77
"u50",
88
"samsung",
9+
"_u2_",
910
"nodma"
1011
],
1112
"description": [

cpp_kernels/kernel_global_bandwidth/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ include config.mk
8787
CXXFLAGS += $(opencl_CXXFLAGS) -Wall -O0 -g -std=c++11
8888
LDFLAGS += $(opencl_LDFLAGS)
8989

90+
ifeq ($(findstring _u2_, $(DEVICE)), _u2_)
91+
$(error [ERROR]: This example is not supported for $(DEVICE).)
92+
endif
9093
ifeq ($(findstring u30, $(DEVICE)), u30)
9194
$(error [ERROR]: This example is not supported for $(DEVICE).)
9295
endif

cpp_kernels/kernel_global_bandwidth/README.rst

Lines changed: 1 addition & 0 deletions

cpp_kernels/kernel_global_bandwidth/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
],
66
"flow": "vitis",
77
"platform_blacklist": [
8+
"_u2_",
89
"u30",
910
"u50",
1011
"vck",

cpp_kernels/plram_access/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ endif
103103
ifeq ($(findstring samsung, $(DEVICE)), samsung)
104104
$(error [ERROR]: This example is not supported for $(DEVICE).)
105105
endif
106+
ifeq ($(findstring _u2_, $(DEVICE)), _u2_)
107+
$(error [ERROR]: This example is not supported for $(DEVICE).)
108+
endif
106109
ifeq ($(findstring nodma, $(DEVICE)), nodma)
107110
$(error [ERROR]: This example is not supported for $(DEVICE).)
108111
endif

cpp_kernels/plram_access/README.rst

Lines changed: 1 addition & 0 deletions

cpp_kernels/plram_access/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"vck",
1919
"u50",
2020
"samsung",
21+
"_u2_",
2122
"nodma"
2223
],
2324
"os": [

host/hbm_bandwidth/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ endif
109109
ifeq ($(findstring samsung, $(DEVICE)), samsung)
110110
$(error [ERROR]: This example is not supported for $(DEVICE).)
111111
endif
112+
ifeq ($(findstring _u2_, $(DEVICE)), _u2_)
113+
$(error [ERROR]: This example is not supported for $(DEVICE).)
114+
endif
112115
ifeq ($(findstring nodma, $(DEVICE)), nodma)
113116
$(error [ERROR]: This example is not supported for $(DEVICE).)
114117
endif

0 commit comments

Comments
 (0)