Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 7c45fa5

Browse files
committed
Adjust entry count to match Gen9 max work group size
1 parent 90d5908 commit 7c45fa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

omniscidb/Tests/L0SharedMemoryTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ TEST(Smoke, Simple) {
282282
}
283283

284284
TEST(SingleColumn, VariableEntries_CountQuery_4B_Group) {
285-
GTEST_SKIP();
286-
for (auto num_entries : {1, 2, 3, 5, 13, 31, 63, 126, 241, 511, 1021}) {
285+
// Gen9 has a max group size of 256
286+
for (auto num_entries : {1, 2, 3, 5, 13, 31, 63, 126, 241 /*, 511, 1021*/}) {
287287
TestInputData input;
288288
input.setDeviceId(0)
289289
.setNumInputBuffers(4)
@@ -300,8 +300,8 @@ TEST(SingleColumn, VariableEntries_CountQuery_4B_Group) {
300300
}
301301

302302
TEST(SingleColumn, VariableEntries_CountQuery_8B_Group) {
303-
GTEST_SKIP();
304-
for (auto num_entries : {1, 2, 3, 5, 13, 31, 63, 126, 241, 511, 1021}) {
303+
// Gen9 has a max group size of 256
304+
for (auto num_entries : {1, 2, 3, 5, 13, 31, 63, 126, 241 /*, 511, 1021*/}) {
305305
TestInputData input;
306306
input.setDeviceId(0)
307307
.setNumInputBuffers(4)

0 commit comments

Comments
 (0)