File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ class __SYCL_EXPORT kernel {
102
102
// / \return a valid SYCL context
103
103
context get_context () const ;
104
104
105
- // / Get the kernel_bundle that this kernel is associated with .
105
+ // / Get the kernel_bundle associated with this kernel.
106
106
// /
107
107
// / \return a valid kernel_bundle<bundle_state::executable>
108
108
kernel_bundle<bundle_state::executable> get_kernel_bundle () const ;
Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ static sycl::unittest::PiImageArray ImgArray{Img};
63
63
TEST (KernelBundle, GetKernelBundleFromKernel) {
64
64
sycl::platform Plt{sycl::default_selector ()};
65
65
if (Plt.is_host ()) {
66
- std::cerr << " Test is not supported on host, skipping\n " ;
66
+ std::cout << " Test is not supported on host, skipping\n " ;
67
67
return ; // test is not supported on host.
68
68
}
69
69
70
70
if (Plt.get_backend () == sycl::backend::cuda) {
71
- std::cerr << " Test is not supported on CUDA platform, skipping\n " ;
71
+ std::cout << " Test is not supported on CUDA platform, skipping\n " ;
72
72
return ;
73
73
}
74
74
You can’t perform that action at this time.
0 commit comments