summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utests/compiler_global_memory_barrier.cpp2
-rw-r--r--utests/compiler_local_memory_barrier_2.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/utests/compiler_global_memory_barrier.cpp b/utests/compiler_global_memory_barrier.cpp
index a6496a78..ea84e724 100644
--- a/utests/compiler_global_memory_barrier.cpp
+++ b/utests/compiler_global_memory_barrier.cpp
@@ -13,7 +13,7 @@ static void compiler_global_memory_barrier(void)
// Run the kernel
globals[0] = n/2;
- locals[0] = 32;
+ locals[0] = 256;
OCL_NDRANGE(1);
OCL_MAP_BUFFER(0);
diff --git a/utests/compiler_local_memory_barrier_2.cpp b/utests/compiler_local_memory_barrier_2.cpp
index b074123f..4fa090b6 100644
--- a/utests/compiler_local_memory_barrier_2.cpp
+++ b/utests/compiler_local_memory_barrier_2.cpp
@@ -5,7 +5,7 @@ static void compiler_local_memory_barrier_2(void)
const size_t n = 16*1024;
globals[0] = n/2;
- locals[0] = 32;
+ locals[0] = 256;
// Setup kernel and buffers
OCL_CREATE_KERNEL("compiler_local_memory_barrier_2");