Skip to content

Commit a859008

Browse files
committed
Fix formatting
1 parent a3f3fbd commit a859008

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

sycl/source/detail/arg_extraction.hpp

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ inline constexpr size_t MaxNumAdditionalArgs = 13;
3636
constexpr static int AccessTargetMask = 0x7ff;
3737

3838
inline void addArgsForGlobalAccessor(detail::Requirement *AccImpl, size_t Index,
39-
size_t &IndexShift, int Size,
40-
bool IsKernelCreatedFromSource, size_t GlobalSize,
41-
std::vector<detail::ArgDesc> &Args,
42-
bool isESIMD) {
39+
size_t &IndexShift, int Size,
40+
bool IsKernelCreatedFromSource,
41+
size_t GlobalSize,
42+
std::vector<detail::ArgDesc> &Args,
43+
bool isESIMD) {
4344
using detail::kernel_param_kind_t;
4445
if (AccImpl->PerWI)
4546
AccImpl->resize(GlobalSize);
@@ -69,9 +70,11 @@ inline void addArgsForGlobalAccessor(detail::Requirement *AccImpl, size_t Index,
6970
}
7071
}
7172

72-
inline void addArgsForLocalAccessor(detail::LocalAccessorImplHost *LAcc, size_t Index,
73-
size_t &IndexShift, bool IsKernelCreatedFromSource,
74-
std::vector<detail::ArgDesc> &Args, bool IsESIMD) {
73+
inline void addArgsForLocalAccessor(detail::LocalAccessorImplHost *LAcc,
74+
size_t Index, size_t &IndexShift,
75+
bool IsKernelCreatedFromSource,
76+
std::vector<detail::ArgDesc> &Args,
77+
bool IsESIMD) {
7578
using detail::kernel_param_kind_t;
7679

7780
range<3> &LAccSize = LAcc->MSize;
@@ -277,7 +280,7 @@ inline void processArg(
277280
}
278281

279282
inline void validateDynamicParameterGraphState(bool QueueHasCommandGraph,
280-
bool IsGraphSubmission) {
283+
bool IsGraphSubmission) {
281284
if (QueueHasCommandGraph) {
282285
throw sycl::exception(
283286
make_error_code(errc::invalid),

0 commit comments

Comments
 (0)