File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
sycl/test-e2e/DeviceImageDependencies/Inputs Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11#include " a.hpp"
2- # include < iostream >
2+
33#include < sycl/detail/core.hpp>
4+ #include < sycl/kernel_bundle.hpp>
45
56#include < cassert>
7+ #include < iostream>
68#include < functional>
79
810using namespace sycl ;
@@ -28,7 +30,7 @@ int main() {
2830 });
2931 runTest (q, [](queue &q, buffer<int , 1 > &buf) {
3032 kernel_bundle KB = get_kernel_bundle<sycl::bundle_state::executable>(
31- q.get_context (), {sycl:: get_kernel_id<Kernel<2 >>()});
33+ q.get_context (), {get_kernel_id<Kernel<2 >>()});
3234 q.submit ([&](handler &cgh) {
3335 auto acc = buf.get_access (cgh);
3436 cgh.use_kernel_bundle (KB);
@@ -37,7 +39,7 @@ int main() {
3739 });
3840 runTest (q, [](queue &q, buffer<int , 1 > &buf) {
3941 kernel_bundle KBInput = get_kernel_bundle<sycl::bundle_state::input>(
40- q.get_context (), {sycl:: get_kernel_id<Kernel<3 >>()});
42+ q.get_context (), {get_kernel_id<Kernel<3 >>()});
4143 kernel_bundle KBObject = compile (KBInput);
4244 kernel_bundle KBLinked = link (KBObject);
4345 q.submit ([&](handler &cgh) {
You can’t perform that action at this time.
0 commit comments