Skip to content

Commit 3c7f491

Browse files
committed
Fix formatting
Signed-off-by: Larsen, Steffen <[email protected]>
1 parent 059af6c commit 3c7f491

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

sycl/include/sycl/queue.hpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2762,22 +2762,22 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
27622762
void submit_without_event_impl(std::function<void(handler &)> CGH,
27632763
const detail::code_location &CodeLoc,
27642764
bool IsTopCodeLoc);
2765-
event submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2766-
const detail::code_location &CodeLoc,
2767-
const detail::SubmitPostProcessF &PostProcess);
2768-
event submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2769-
const detail::code_location &CodeLoc,
2770-
const detail::SubmitPostProcessF &PostProcess,
2771-
bool IsTopCodeLoc);
2772-
event submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2773-
queue secondQueue,
2774-
const detail::code_location &CodeLoc,
2775-
const detail::SubmitPostProcessF &PostProcess);
2776-
event submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2777-
queue secondQueue,
2778-
const detail::code_location &CodeLoc,
2779-
const detail::SubmitPostProcessF &PostProcess,
2780-
bool IsTopCodeLoc);
2765+
event
2766+
submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2767+
const detail::code_location &CodeLoc,
2768+
const detail::SubmitPostProcessF &PostProcess);
2769+
event submit_impl_and_postprocess(
2770+
std::function<void(handler &)> CGH, const detail::code_location &CodeLoc,
2771+
const detail::SubmitPostProcessF &PostProcess, bool IsTopCodeLoc);
2772+
event
2773+
submit_impl_and_postprocess(std::function<void(handler &)> CGH,
2774+
queue secondQueue,
2775+
const detail::code_location &CodeLoc,
2776+
const detail::SubmitPostProcessF &PostProcess);
2777+
event submit_impl_and_postprocess(
2778+
std::function<void(handler &)> CGH, queue secondQueue,
2779+
const detail::code_location &CodeLoc,
2780+
const detail::SubmitPostProcessF &PostProcess, bool IsTopCodeLoc);
27812781
#endif // __INTEL_PREVIEW_BREAKING_CHANGES
27822782

27832783
/// A template-free versions of submit.

sycl/source/detail/queue_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,8 @@ class queue_impl {
370370
SubmitInfo.impl->MSecondaryQueue;
371371
try {
372372
ResEvent = submit_impl(CGF, Self, Self, SecondQueue,
373-
/*CallerNeedsEvent=*/true, Loc, IsTopCodeLoc,
374-
SubmitInfo);
373+
/*CallerNeedsEvent=*/true, Loc, IsTopCodeLoc,
374+
SubmitInfo);
375375
} catch (...) {
376376
ResEvent = SecondQueue->submit_impl(CGF, SecondQueue, Self, SecondQueue,
377377
/*CallerNeedsEvent=*/true, Loc,

sycl/source/queue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void SubmissionInfo::SetSecondaryQueue(
3434
impl = std::make_shared<SubmissionInfoImpl>();
3535
impl->MSecondaryQueue = SecondaryQueue;
3636
}
37-
}
37+
} // namespace detail
3838

3939
queue::queue(const context &SyclContext, const device_selector &DeviceSelector,
4040
const async_handler &AsyncHandler, const property_list &PropList) {

0 commit comments

Comments
 (0)