buffers: Switch from enqueueing to enqueuing (#1246)

OpenCL-Docs has 45 occurrences of “enqueuing” but a single one of
“enqueueing”.
This commit is contained in:
Pierre Moreau
2021-05-14 10:44:51 +02:00
committed by GitHub
parent e7c5694cf5
commit 6572837994
2 changed files with 6 additions and 6 deletions

View File

@@ -295,9 +295,9 @@ int test_buffer_migrate(cl_device_id deviceID, cl_context context, cl_command_qu
}
if ((err = clEnqueueNDRangeKernel(queues[i], kernel, 1, NULL, wgs, NULL, 0, NULL, NULL)) != CL_SUCCESS) {
print_error(err, "Failed enqueueing the NDRange kernel.");
failed = 1;
goto cleanup;
print_error(err, "Failed enqueuing the NDRange kernel.");
failed = 1;
goto cleanup;
}
}
// Verify the results as long as neither input is an undefined migration

View File

@@ -345,9 +345,9 @@ int test_image_migrate(cl_device_id deviceID, cl_context context, cl_command_que
}
if ((err = clEnqueueNDRangeKernel(queues[i], kernel, 2, NULL, wgs, wls, 0, NULL, NULL)) != CL_SUCCESS) {
print_error(err, "Failed enqueueing the NDRange kernel.");
failed = 1;
goto cleanup;
print_error(err, "Failed enqueuing the NDRange kernel.");
failed = 1;
goto cleanup;
}
}
// Verify the results as long as neither input is an undefined migration