Change required SIMD size to 16.

Change-Id: I6c48661e7221808306704eb665a5e31039335be6
Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
This commit is contained in:
Michal Mrozek
2020-02-12 08:10:00 +01:00
committed by sys_ocldev
parent 4da8fe050b
commit 0a7a4bfa4d

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017-2019 Intel Corporation
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -89,7 +89,7 @@ __kernel void simple_kernel_6(__global uint *dst, __constant uint2 *src, uint sc
typedef long16 TYPE;
__attribute__((reqd_work_group_size(32, 1, 1))) // force LWS to 32
__attribute__((intel_reqd_sub_group_size(8))) // force SIMD to 8
__attribute__((intel_reqd_sub_group_size(16))) // force SIMD to 16
__kernel void
simple_kernel_7(__global int *resIdx, global TYPE *src, global TYPE *dst) {
size_t lid = get_local_id(0);