summaryrefslogtreecommitdiff
path: root/benchmark/benchmark_use_host_ptr_buffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/benchmark_use_host_ptr_buffer.cpp')
-rw-r--r--benchmark/benchmark_use_host_ptr_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/benchmark_use_host_ptr_buffer.cpp b/benchmark/benchmark_use_host_ptr_buffer.cpp
index 7ede5767..80b6c5c3 100644
--- a/benchmark/benchmark_use_host_ptr_buffer.cpp
+++ b/benchmark/benchmark_use_host_ptr_buffer.cpp
@@ -10,7 +10,7 @@ int benchmark_use_host_ptr_buffer(void)
// Setup kernel and buffers
OCL_CREATE_KERNEL("runtime_use_host_ptr_buffer");
- int ret = posix_memalign(&buf_data[0], 4096, sizeof(uint32_t) * n);
+ int ret = posix_memalign(&buf_data[0], 64, sizeof(uint32_t) * n);
OCL_ASSERT(ret == 0);
for (uint32_t i = 0; i < n; ++i) ((uint32_t*)buf_data[0])[i] = i;