Skip to content

Commit 9f37b63

Browse files
committed
Address comments
1 parent 0409c2d commit 9f37b63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sycl/include/CL/sycl/kernel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class __SYCL_EXPORT kernel {
102102
/// \return a valid SYCL context
103103
context get_context() const;
104104

105-
/// Get the kernel_bundle that this kernel is associated with.
105+
/// Get the kernel_bundle associated with this kernel.
106106
///
107107
/// \return a valid kernel_bundle<bundle_state::executable>
108108
kernel_bundle<bundle_state::executable> get_kernel_bundle() const;

sycl/unittests/SYCL2020/KernelBundle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ static sycl::unittest::PiImageArray ImgArray{Img};
6363
TEST(KernelBundle, GetKernelBundleFromKernel) {
6464
sycl::platform Plt{sycl::default_selector()};
6565
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";
6767
return; // test is not supported on host.
6868
}
6969

7070
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";
7272
return;
7373
}
7474

0 commit comments

Comments
 (0)