Skip to content

Commit 458ab0c

Browse files
authored
[UR] Fix arguments of urEnqueueKernelLaunch() in test/fuzz/urFuzz.cpp (#20823)
Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
1 parent 5f3fce6 commit 458ab0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unified-runtime/test/fuzz/urFuzz.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ int ur_program_create_with_il(TestState &state) {
402402
const size_t lWorkSize[] = {1, 1, 1};
403403

404404
urEnqueueKernelLaunch(queue, kernel, nDim, gWorkOffset, gWorkSize, lWorkSize,
405-
0, nullptr, &event);
405+
nullptr, 1, &event, nullptr);
406406
urEventWait(1, &event);
407407
urEventRelease(event);
408408

0 commit comments

Comments
 (0)