Skip to content

Commit dc04c92

Browse files
committed
Please consider the following formatting changes
1 parent db3b2f3 commit dc04c92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

GPU/GPUTracking/Global/GPUChain.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@ class GPUChain
227227
virtual int32_t DoStuckProtection(int32_t stream, deviceEvent event) { return 0; }
228228

229229
template <class T, class S, typename... Args>
230-
bool DoDebugAndDump(RecoStep step, uint32_t mask, T& processor, S T::* func, Args&&... args)
230+
bool DoDebugAndDump(RecoStep step, uint32_t mask, T& processor, S T::*func, Args&&... args)
231231
{
232232
return DoDebugAndDump(step, mask, true, processor, func, args...);
233233
}
234234
template <class T, class S, typename... Args>
235-
bool DoDebugAndDump(RecoStep step, uint32_t mask, bool transfer, T& processor, S T::* func, Args&&... args);
235+
bool DoDebugAndDump(RecoStep step, uint32_t mask, bool transfer, T& processor, S T::*func, Args&&... args);
236236
template <typename... Args>
237237
bool DoDebugDump(uint32_t mask, std::function<void(Args&...)> func, Args&... args);
238238
template <class S, typename... Args>
@@ -286,7 +286,7 @@ inline void GPUChain::timeCpy(RecoStep step, int32_t toGPU, S T::*func, Args...
286286
}
287287

288288
template <class T, class S, typename... Args>
289-
inline int32_t GPUChain::runRecoStep(RecoStep step, S T::* func, Args... args)
289+
inline int32_t GPUChain::runRecoStep(RecoStep step, S T::*func, Args... args)
290290
{
291291
if (GetRecoSteps().isSet(step)) {
292292
auto* timer = GetProcessingSettings().recoTaskTiming ? &mRec->getRecoStepTimer(step) : nullptr;

GPU/GPUTracking/Global/GPUChainTrackingDebug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ enum GPUChainTrackingDebugFlags : uint32_t {
4848
};
4949

5050
template <class T, class S, typename... Args>
51-
inline bool GPUChain::DoDebugAndDump(GPUChain::RecoStep step, uint32_t mask, bool transfer, T& processor, S T::* func, Args&&... args)
51+
inline bool GPUChain::DoDebugAndDump(GPUChain::RecoStep step, uint32_t mask, bool transfer, T& processor, S T::*func, Args&&... args)
5252
{
5353
if (GetProcessingSettings().keepAllMemory) {
5454
if (transfer) {

0 commit comments

Comments
 (0)