From 85939ab2043f804f9dc32fa3a98376c9e6c9cdc1 Mon Sep 17 00:00:00 2001 From: "Li, Ian" Date: Fri, 20 Dec 2024 14:45:57 -0800 Subject: [PATCH] spelling --- sycl/test-e2e/USM/prefetch_exp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/test-e2e/USM/prefetch_exp.cpp b/sycl/test-e2e/USM/prefetch_exp.cpp index d4af17429e809..1dd895d2867e7 100644 --- a/sycl/test-e2e/USM/prefetch_exp.cpp +++ b/sycl/test-e2e/USM/prefetch_exp.cpp @@ -43,7 +43,7 @@ int main() { }); q.submit([&](handler &CGH) { - CGH.depends_on(init_prefetch); + CGH.depends_on(InitPrefetch); CGH.single_task([=]() { for (int i = 0; i < Count; i++) Dest[i] = 2 * Src[i];