mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 16:29:03 +00:00
Fix incorrect use of kernel parameter (#1168)
This issue was introduced in 8ad1088a (Reduce difference between files
in math_brute_force (#1138), 2021-02-10).
Signed-off-by: Marco Antognini <marco.antognini@arm.com>
This commit is contained in:
@@ -132,7 +132,7 @@ static int BuildKernelDouble(const char *name, int vectorSize, cl_kernel *k,
|
|||||||
" size_t i = get_global_id(0);\n"
|
" size_t i = get_global_id(0);\n"
|
||||||
" out[i] = ",
|
" out[i] = ",
|
||||||
name,
|
name,
|
||||||
"( in1[i], in2[i], out2[i] );\n"
|
"( in1[i], in2[i], out2 + i );\n"
|
||||||
"}\n" };
|
"}\n" };
|
||||||
|
|
||||||
const char *c3[] = {
|
const char *c3[] = {
|
||||||
|
|||||||
Reference in New Issue
Block a user