File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 1212
1313#include < memory>
1414
15- #include < iostream>
16-
1715namespace sycl {
1816inline namespace _V1 {
1917namespace detail {
@@ -106,12 +104,7 @@ std::string_view kernel_impl::getName() const {
106104}
107105
108106bool 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>();
You can’t perform that action at this time.
0 commit comments