mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Remove unused variables in subgroup tests (#1460)
Signed-off-by: Stuart Brady <stuart.brady@arm.com>
This commit is contained in:
@@ -134,23 +134,6 @@ template <NonUniformVoteOp operation> struct AA
|
||||
}
|
||||
};
|
||||
|
||||
static const char *any_source = "__kernel void test_any(const __global Type "
|
||||
"*in, __global int4 *xy, __global Type *out)\n"
|
||||
"{\n"
|
||||
" int gid = get_global_id(0);\n"
|
||||
" XY(xy,gid);\n"
|
||||
" out[gid] = sub_group_any(in[gid]);\n"
|
||||
"}\n";
|
||||
|
||||
static const char *all_source = "__kernel void test_all(const __global Type "
|
||||
"*in, __global int4 *xy, __global Type *out)\n"
|
||||
"{\n"
|
||||
" int gid = get_global_id(0);\n"
|
||||
" XY(xy,gid);\n"
|
||||
" out[gid] = sub_group_all(in[gid]);\n"
|
||||
"}\n";
|
||||
|
||||
|
||||
template <typename T>
|
||||
int run_broadcast_scan_reduction_for_type(RunTestForType rft)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user