Skip to content

Commit ac5c678

Browse files
committed
[SYCL] remove prints
1 parent 888dcfe commit ac5c678

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

sycl/source/detail/kernel_impl.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
#include <memory>
1414

15-
#include <iostream>
16-
1715
namespace sycl {
1816
inline namespace _V1 {
1917
namespace detail {
@@ -106,12 +104,7 @@ std::string_view kernel_impl::getName() const {
106104
}
107105

108106
bool kernel_impl::isBuiltInKernel(const device &Device) const {
109-
std::cout << "isBuiltInKernel" << std::endl;
110107
auto BuiltInKernels = Device.get_info<info::device::built_in_kernel_ids>();
111-
std::cout << "Built-in kernels available on the device:" << std::endl;
112-
for (const auto &kernel_id : BuiltInKernels) {
113-
std::cout << " " << kernel_id.get_name() << std::endl;
114-
}
115108
if (BuiltInKernels.empty())
116109
return false;
117110
std::string KernelName = get_info<info::kernel::function_name>();

0 commit comments

Comments
 (0)