From fcd0dafc4f0c43a6ae1e73cfabb1879f63e7238d Mon Sep 17 00:00:00 2001 From: Greg Lueck Date: Sun, 8 Sep 2024 18:09:18 -0400 Subject: [PATCH] Merge pull request #614 from hdelan/fix-typo Fix typo --- adoc/code/usm_device.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/adoc/code/usm_device.cpp b/adoc/code/usm_device.cpp index 36f499a11..8e0d88c8e 100644 --- a/adoc/code/usm_device.cpp +++ b/adoc/code/usm_device.cpp @@ -9,8 +9,7 @@ int main() { // Create a default queue to enqueue work to the default device queue myQueue; - // Allocate shared memory bound to the device and context associated to the - // queue + // Allocate device USM, using the device and context associated with the queue int* data = sycl::malloc_device(1024, myQueue); myQueue.parallel_for(1024, [=](id<1> idx) {