File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sycl/test-e2e/DeviceImageDependencies/Inputs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ int main() {
2828 });
2929 runTest (q, [](queue &q, buffer<int , 1 > &buf) {
3030 kernel_bundle KB = get_kernel_bundle<sycl::bundle_state::executable>(
31- q.get_context (), {get_kernel_id<Kernel<2 >>()});
31+ q.get_context (), {sycl:: get_kernel_id<Kernel<2 >>()});
3232 q.submit ([&](handler &cgh) {
3333 auto acc = buf.get_access (cgh);
3434 cgh.use_kernel_bundle (KB);
@@ -37,7 +37,7 @@ int main() {
3737 });
3838 runTest (q, [](queue &q, buffer<int , 1 > &buf) {
3939 kernel_bundle KBInput = get_kernel_bundle<sycl::bundle_state::input>(
40- q.get_context (), {get_kernel_id<Kernel<3 >>()});
40+ q.get_context (), {sycl:: get_kernel_id<Kernel<3 >>()});
4141 kernel_bundle KBObject = compile (KBInput);
4242 kernel_bundle KBLinked = link (KBObject);
4343 q.submit ([&](handler &cgh) {
You can’t perform that action at this time.
0 commit comments