File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ queue Queue{};
462462exp_ext::command_graph Graph{Queue.get_context(), Queue.get_device()};
463463
464464int * PtrA = malloc_device<int >(1024, Queue);
465- int * PtrB = malloc_device<int >(1024, Queue)
465+ int * PtrB = malloc_device<int >(1024, Queue);
466466
467467auto CgfA = [ &] (handler &cgh) {
468468 cgh.parallel_for(1024, [ =] (item<1> Item) {
@@ -514,7 +514,7 @@ int *PtrB = malloc_device<int>(n, Queue);
514514const std::vector<kernel_id> builtinKernelIds =
515515 myDevice.get_info<info::device::built_in_kernel_ids>();
516516kernel_bundle<bundle_state::executable> myBundle =
517- get_kernel_bundle(myContext, { myDevice }, builtinKernelIds);
517+ get_kernel_bundle<sycl::bundle_state::executable> (myContext, { myDevice }, builtinKernelIds);
518518
519519kernel builtinKernelA = myBundle.get_kernel(builtinKernelIds[0]);
520520kernel builtinKernelB = myBundle.get_kernel(builtinKernelIds[1]);
You can’t perform that action at this time.
0 commit comments