Skip to content
Merged
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
7 changes: 3 additions & 4 deletions sycl/include/sycl/handler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ class __SYCL_EXPORT handler {
/// \param KernelFunc is a SYCL kernel function.
template <typename KernelName, typename KernelType, int Dims,
typename PropertiesT>
void parallel_for_impl(nd_range<Dims> ExecutionRange, PropertiesT Properties,
void parallel_for_impl(nd_range<Dims> ExecutionRange, PropertiesT,
_KERNELFUNCPARAM(KernelFunc)) {
throwIfActionIsCreated();
// TODO: Properties may change the kernel function, so in order to avoid
Expand Down Expand Up @@ -1363,9 +1363,8 @@ class __SYCL_EXPORT handler {
kernel_handler) {}

template <typename KernelName, typename ElementType, typename KernelType>
static void
kernel_parallel_for_work_group_unpack(handler *Caller,
_KERNELFUNCPARAM(KernelFunc)) {}
static void kernel_parallel_for_work_group_unpack(handler *,
_KERNELFUNCPARAMTYPE) {}

template <typename KernelName, typename ElementType, typename KernelType>
static void kernel_parallel_for_work_group_unpack(handler *,
Expand Down