diff --git a/adoc/code/usm_device.cpp b/adoc/code/usm_device.cpp index d34250d8..8e0d88c8 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 device global memory bound to the device and context associated - // with 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) {