@@ -99,8 +99,7 @@ namespace {
9999// and increment it via template recursion until it is equal to the run-time
100100// argument N.
101101template <
102- template <typename , int64_t >
103- class Kernel ,
102+ template <typename , int64_t > class Kernel ,
104103 typename T,
105104 int64_t minN,
106105 int64_t maxN,
@@ -124,8 +123,7 @@ struct DispatchKernelHelper1D {
124123// 1D dispatch: Specialization when curN == maxN
125124// We need this base case to avoid infinite template recursion.
126125template <
127- template <typename , int64_t >
128- class Kernel ,
126+ template <typename , int64_t > class Kernel ,
129127 typename T,
130128 int64_t minN,
131129 int64_t maxN,
@@ -145,8 +143,7 @@ struct DispatchKernelHelper1D<Kernel, T, minN, maxN, maxN, Args...> {
145143// the run-time values of N and M, at which point we dispatch to the run
146144// method of the kernel.
147145template <
148- template <typename , int64_t , int64_t >
149- class Kernel ,
146+ template <typename , int64_t , int64_t > class Kernel ,
150147 typename T,
151148 int64_t minN,
152149 int64_t maxN,
@@ -203,8 +200,7 @@ struct DispatchKernelHelper2D {
203200
204201// 2D dispatch, specialization for curN == maxN
205202template <
206- template <typename , int64_t , int64_t >
207- class Kernel ,
203+ template <typename , int64_t , int64_t > class Kernel ,
208204 typename T,
209205 int64_t minN,
210206 int64_t maxN,
@@ -243,8 +239,7 @@ struct DispatchKernelHelper2D<
243239
244240// 2D dispatch, specialization for curM == maxM
245241template <
246- template <typename , int64_t , int64_t >
247- class Kernel ,
242+ template <typename , int64_t , int64_t > class Kernel ,
248243 typename T,
249244 int64_t minN,
250245 int64_t maxN,
@@ -283,8 +278,7 @@ struct DispatchKernelHelper2D<
283278
284279// 2D dispatch, specialization for curN == maxN, curM == maxM
285280template <
286- template <typename , int64_t , int64_t >
287- class Kernel ,
281+ template <typename , int64_t , int64_t > class Kernel ,
288282 typename T,
289283 int64_t minN,
290284 int64_t maxN,
@@ -313,8 +307,7 @@ struct DispatchKernelHelper2D<
313307
314308// This is the function we expect users to call to dispatch to 1D functions
315309template <
316- template <typename , int64_t >
317- class Kernel ,
310+ template <typename , int64_t > class Kernel ,
318311 typename T,
319312 int64_t minN,
320313 int64_t maxN,
@@ -330,8 +323,7 @@ void DispatchKernel1D(const int64_t N, Args... args) {
330323
331324// This is the function we expect users to call to dispatch to 2D functions
332325template <
333- template <typename , int64_t , int64_t >
334- class Kernel ,
326+ template <typename , int64_t , int64_t > class Kernel ,
335327 typename T,
336328 int64_t minN,
337329 int64_t maxN,
0 commit comments