Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/include/sycl/detail/get_kernel_info_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DeviceKernelInfo;
// Fetches the cached kernel via the program manager and dispatches to
// get_kernel_device_specific_info. Validation that kernel_impl::get_info
// performs is replicated in the library-side definition (see
// validateDeviceSpecificQuery in source/detail/get_device_kernel_info.cpp).
// validateDeviceSpecificQuery in source/detail/get_kernel_info_impl.cpp).
// Explicit instantiations for every kernel_device_specific descriptor form
// the ABI boundary; user code reaches these through the public entry points
// in ext/oneapi/get_kernel_info.hpp.
Expand Down
1 change: 0 additions & 1 deletion sycl/source/detail/get_kernel_info_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

#include <detail/context_impl.hpp>
#include <detail/device_impl.hpp>
#include <detail/global_handler.hpp>
#include <detail/kernel_info.hpp>
#include <detail/program_manager/program_manager.hpp>

Expand Down
2 changes: 1 addition & 1 deletion sycl/source/detail/kernel_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ inline context kernel_impl::get_info<info::kernel::context>() const {
}

// NOTE: the global_work_size and spill_memory_size pre-query checks below are
// mirrored in validateDeviceSpecificQuery (get_device_kernel_info.cpp), which
// mirrored in validateDeviceSpecificQuery (get_kernel_info_impl.cpp), which
// serves the ext::oneapi::get_kernel_info<KernelName, Param> fast path that
// does not go through kernel_impl. Keep both in sync.
template <typename Param>
Expand Down
Loading