From 657283799482433cc35d119ddab220dcad1f00aa Mon Sep 17 00:00:00 2001 From: Pierre Moreau Date: Fri, 14 May 2021 10:44:51 +0200 Subject: [PATCH] buffers: Switch from enqueueing to enqueuing (#1246) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OpenCL-Docs has 45 occurrences of “enqueuing” but a single one of “enqueueing”. --- test_conformance/buffers/test_buffer_migrate.cpp | 6 +++--- test_conformance/buffers/test_image_migrate.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test_conformance/buffers/test_buffer_migrate.cpp b/test_conformance/buffers/test_buffer_migrate.cpp index a5b6f26a..f3098366 100644 --- a/test_conformance/buffers/test_buffer_migrate.cpp +++ b/test_conformance/buffers/test_buffer_migrate.cpp @@ -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 diff --git a/test_conformance/buffers/test_image_migrate.cpp b/test_conformance/buffers/test_image_migrate.cpp index 31bb0a21..dbdca9cc 100644 --- a/test_conformance/buffers/test_image_migrate.cpp +++ b/test_conformance/buffers/test_image_migrate.cpp @@ -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