Skip to content

Commit 502f637

Browse files
committed
Fix formatting, remove unused properties argument
1 parent 8e155fb commit 502f637

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

sycl/include/sycl/ext/oneapi/experimental/enqueue_functions.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ template <typename CommandGroupFunc, typename PropertiesT>
160160
event submit_with_event(const queue &Q, PropertiesT Props,
161161
CommandGroupFunc &&CGF,
162162
const sycl::detail::code_location &CodeLoc =
163-
sycl::detail::code_location::current()) {
163+
sycl::detail::code_location::current()) {
164164
return sycl::ext::oneapi::experimental::detail::submit_with_event_impl(
165165
Q, Props, std::forward<CommandGroupFunc>(CGF), CodeLoc);
166166
}

sycl/include/sycl/queue.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3717,9 +3717,8 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
37173717
item<Dims>, LambdaArgType>>;
37183718
};
37193719

3720-
template <typename KernelName, typename PropertiesT, typename KernelType,
3721-
int Dims>
3722-
void ProcessKernelRuntimeInfo(PropertiesT Props, const KernelType &KernelFunc,
3720+
template <typename KernelName, typename KernelType, int Dims>
3721+
void ProcessKernelRuntimeInfo(const KernelType &KernelFunc,
37233722
detail::v1::KernelRuntimeInfo &KRInfo) const {
37243723

37253724
using LambdaArgType = sycl::detail::lambda_arg_type<KernelType, item<Dims>>;

0 commit comments

Comments
 (0)