Remove unused variables in subgroup tests (#1460)

Signed-off-by: Stuart Brady <stuart.brady@arm.com>
This commit is contained in:
Stuart Brady
2022-08-04 15:04:14 +01:00
committed by GitHub
parent c12bff46c6
commit 4ee8022230
6 changed files with 4 additions and 33 deletions

View File

@@ -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)
{