-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathprocinfoTemplate.cuh
788 lines (665 loc) · 21.3 KB
/
procinfoTemplate.cuh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
// Project Whippletree
// http://www.icg.tugraz.at/project/parallel
//
// Copyright (C) 2014 Institute for Computer Graphics and Vision,
// Graz University of Technology
//
// Author(s): Markus Steinberger - steinberger ( at ) icg.tugraz.at
// Michael Kenzel - kenzel ( at ) icg.tugraz.at
// Pedro Boechat - boechat ( at ) icg.tugraz.at
// Bernhard Kerbl - kerbl ( at ) icg.tugraz.at
// Mark Dokter - dokter ( at ) icg.tugraz.at
// Dieter Schmalstieg - schmalstieg ( at ) icg.tugraz.at
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#pragma once
#include <algorithm>
#include "procedureInterface.cuh"
#include "random.cuh"
#include "tools/common.cuh"
template<int ProcThreads, bool Warp, bool MultiElement>
class GroupOpsSelect;
// features for items ... none
template<bool MultiElement>
class GroupOpsSelect<1, true, MultiElement> {};
// features for sub warp groups
template<int ProcThreads, bool MultiElement>
class GroupOpsSelect<ProcThreads, true, MultiElement>
{
static const int MaxWarps = 32;
static const unsigned int Mask = ((1u << ProcThreads)-1);
public:
static __device__ __inline__ bool any(int arg)
{
unsigned int ballotres = __ballot(arg);
return ((ballotres << (Tools::laneid()/ProcThreads)) & Mask) != 0u;
}
static __device__ __inline__ bool all(int arg)
{
unsigned int ballotres = __ballot(arg);
return (ballotres << (Tools::laneid()/ProcThreads)) == Mask;
}
static __device__ __inline__ unsigned int ballot(int arg)
{
unsigned int ballotres = __ballot(arg);
return ((ballotres << (Tools::laneid()/ProcThreads)) & Mask);
}
static __device__ __inline__ int shfl(int value, int srcThread)
{
#if __CUDA_ARCH__ < 300
__shared__ volatile int comm[MaxWarps];
int runid = 0;
int res = value;
for(int offset = 0; offset < 32; offset += ProcThreads)
{
for(int within = 0; within < ProcThreads; ++within)
{
if(Tools::laneid() == runid)
comm[threadIdx.x/32] = value;
if( Tools::laneid() >= offset
&& Tools::laneid() < offset + ProcThreads
&& (runid % ProcThreads) == ((srcThread + 32) % ProcThreads) )
res = comm[threadIdx.x/32];
++runid;
}
}
return res;
#else
return __shfl(value, srcThread, ProcThreads);
#endif
}
};
// features for single workpackage execution
template<int ProcThreads>
class GroupOpsSelect<ProcThreads, false, false>
{
public:
static __device__ __inline__ void sync()
{
Tools::syncthreads(1, ProcThreads);
}
static __device__ __inline__ int sync_count(int predicate)
{
return Tools::syncthreads_count(predicate, 1, ProcThreads);
}
static __device__ __inline__ int sync_and(int predicate)
{
return Tools::syncthreads_and(predicate, 1, ProcThreads);
}
static __device__ __inline__ int sync_or(int predicate)
{
return Tools::syncthreads_or(predicate, 1, ProcThreads);
}
};
// features for multiple workpackage execution
template<int ProcThreads>
class GroupOpsSelect<ProcThreads, false, true>
{
public:
static __device__ __inline__ void sync()
{
Tools::syncthreads(1 + threadIdx.x/ProcThreads, ProcThreads);
}
static __device__ __inline__ int sync_count(int predicate)
{
return Tools::syncthreads_count(predicate, 1 + threadIdx.x/ProcThreads, ProcThreads);
}
static __device__ __inline__ int sync_and(int predicate)
{
return Tools::syncthreads_and(predicate, 1 + threadIdx.x/ProcThreads, ProcThreads);
}
static __device__ __inline__ int sync_or(int predicate)
{
return Tools::syncthreads_or(predicate, 1 + threadIdx.x/ProcThreads, ProcThreads);
}
};
template <int ProcThreads, bool MultiElement, class CustomType>
class Context : public GroupOpsSelect<ProcThreads, ProcThreads <= 32, MultiElement>
{
public:
typedef CustomType Application;
};
template <int a, int b>
struct maxOperator
{
static const int result = a > b ? a : b;
};
template <int a, int b>
struct minOperator
{
static const int result = a < b ? a : b;
};
template <bool test, int a, int b>
struct switchOperator
{
static const int result = test ? a : b;
};
template<int VAL>
struct AvoidZero
{
static const int val = VAL;
};
template<>
struct AvoidZero<0>
{
static const int val = 1;
};
template<class A, class B>
struct Equals
{
static const bool result = false;
};
template<class A>
struct Equals<A,A>
{
static const bool result = true;
};
template<int Phase>
struct NoPriority
{
static const unsigned int MinPriority = 1;
static const unsigned int MaxPriority = 1;
template<class TProc>
__inline__ __device__ static unsigned int eval(typename TProc::ExpectedData* data)
{
return 1;
}
template<class ProcedureIdentifier>
__inline__ __device__ static unsigned int eval(ProcedureIdentifier procIdentifier, void* data)
{
return 1;
}
};
template<class Proc, int Phase>
struct AllPhasesActiveTrait
{
static const bool Active = true;
};
template <int ElementSize>
struct DataAlignment;
class ProcInfoEnd
{
public:
typedef NoProcedure Procedure;
typedef ProcInfoEnd Next;
static void print()
{
printf("\n");
}
static const int ProcedureId = 0;
static const int MaxId = 0;
static const int MaxDataSize = 0;
static const int NumProcedures = 0;
static const bool ItemizedOnly = true;
static const int CombMaxNumThreads = 0;
static const int MinThreadsAmongWorkpackages = 2048;
template<int ThreadCount>
struct GetOccupancy
{
static const bool Runable = true;
static const int SumOccupancy = 0;
};
template<bool MultiPackage>
static void updateRequiredShared(int numThreads, uint4& sharedMem, bool copyToShared, int maxShared, bool MultiExecIdentifieres)
{
}
template<class Proc>
struct Contains
{
static const bool value = false;
};
template<bool MultiElement>
struct OptimalThreadCount
{
static const int Num = 0;
};
template<bool MultiPackage>
static uint4 requiredShared(int numThreads, bool copyToShared = true, int maxShared = 49100, bool MultiExecIdentifieres = false)
{
uint4 sharedMem;
sharedMem.x = sharedMem.y = sharedMem.z = sharedMem.w = 0;
return sharedMem;
}
};
template<class TProcInfo, int MinThreadCount, int MaxThreadCount, int Step = 32>
struct IterateOccupancy
{
typedef IterateOccupancy<TProcInfo, (MinThreadCount + Step > MaxThreadCount ? MaxThreadCount : MinThreadCount + Step), MaxThreadCount, Step> TNext;
static const int ThisOccupancy = TProcInfo:: template GetOccupancy<MinThreadCount>::AverageOccupancy;
static const int OptimalOccupancy = TNext::OptimalOccupancy > ThisOccupancy ? TNext::OptimalOccupancy : ThisOccupancy;
static const int OptimalThreadCount = TNext::OptimalOccupancy > ThisOccupancy ? TNext::OptimalThreadCount : MinThreadCount;
};
template<class TProcInfo, int MaxThreadCount, int Step>
struct IterateOccupancy<TProcInfo, MaxThreadCount, MaxThreadCount, Step>
{
static const int ThisOccupancy = TProcInfo:: template GetOccupancy<MaxThreadCount>::AverageOccupancy;
static const int OptimalOccupancy = ThisOccupancy;
static const int OptimalThreadCount = MaxThreadCount;
};
template<class TProc, class TNext = ProcInfoEnd>
class ProcInfo
{
public:
typedef TProc Procedure;
typedef TNext Next;
static void print()
{
printf("%d->", Procedure::myid);
Next::print();
}
static const int ProcedureId = Next::ProcedureId + 1;
static const int NumPhases = 1;
template<class TTProc, int Phase>
struct PhaseTraits : public AllPhasesActiveTrait<TTProc,Phase>{ };
template<int Phase>
struct Priority : public NoPriority<Phase> { };
static const int MaxId = maxOperator< ProcedureId, Next::MaxId>::result;
static const int MaxDataSize = maxOperator< sizeof(typename Procedure::ExpectedData), Next::MaxDataSize>::result;
typedef typename DataAlignment<MaxDataSize>::Type QueueDataContainer;
static const int NumProcedures = Next::NumProcedures + 1;
static const bool ItemizedOnly = Procedure::ItemInput && Next::ItemizedOnly;
static const int CombMaxNumThreads = maxOperator< Procedure::ItemInput?0:Procedure::NumThreads, Next::CombMaxNumThreads>::result;
static const int MinThreadsAmongWorkpackages = Procedure::ItemInput ? Next::MinThreadsAmongWorkpackages : minOperator<Procedure::NumThreads, Next::MinThreadsAmongWorkpackages>::result;
template<int ThreadCount>
struct GetOccupancy
{
static const int UseThreads = maxOperator< Procedure::NumThreads, 1>::result;
static const int Occupancy = ((ThreadCount / UseThreads) * UseThreads * 1000) / maxOperator<ThreadCount, 1>::result;
static const bool Runable = ThreadCount >= UseThreads && Next:: template GetOccupancy<ThreadCount>::Runable;
static const int SumOccupancy = Runable ? Next:: template GetOccupancy<ThreadCount>:: SumOccupancy + Occupancy : 0;
static const int AverageOccupancy = SumOccupancy / NumProcedures;
};
static const int OptimalThreadCountNonMulti = ItemizedOnly || CombMaxNumThreads == 0 ? 512 : CombMaxNumThreads;
static const int OptimalThreadCountMulti = ItemizedOnly || CombMaxNumThreads == 0 ? 256 : IterateOccupancy<ProcInfo, CombMaxNumThreads, 1024, 32>::OptimalThreadCount;
template<bool MultiElement>
struct OptimalThreadCount
{
static const int Num = MultiElement ? OptimalThreadCountMulti : OptimalThreadCountMulti;
};
//x .. procids
//y .. data
//z .. shared mem for procedures
//w .. sum
template<bool MultiPackage>
static uint4 requiredShared(int numThreads, bool copyToShared = true, int maxShared = 49100, bool MultiExecIdentifieres = false)
{
uint4 sharedMem;
sharedMem.x = sharedMem.y = sharedMem.z = sharedMem.w = 0;
if(maxShared < 0)
{
printf("ERROR: cannot run with negative amount of shared memory!!\n");
return sharedMem;
}
updateRequiredShared<MultiPackage>(numThreads, sharedMem, copyToShared, maxShared, MultiExecIdentifieres);
sharedMem.x = (sharedMem.x + 15)/16*16;
sharedMem.y = (sharedMem.y + 15)/16*16;
sharedMem.z = (sharedMem.z + 15)/16*16;
sharedMem.w = sharedMem.x + sharedMem.y + sharedMem.z;
return sharedMem;
}
template<class Proc>
struct Contains
{
static const bool value = Equals<Proc, Procedure>::result || Next:: template Contains<Proc>::value;
};
template<bool MultiPackage>
static void updateRequiredShared(int numThreads, uint4& sharedMem, bool copyToShared, int maxShared, bool MultiExecIdentifieres)
{
int num = numThreads;
uint4 mysharedAbs = make_uint4(0,0,0,0);
uint4 mysharedMul = make_uint4(0,0,0,0);
if(Procedure::ItemInput)
{
num = numThreads;
if(Procedure::NumThreads != 0)
num = numThreads / AvoidZero<Procedure::NumThreads>::val;
if(MultiExecIdentifieres)
mysharedMul.x = sizeof(uint);
else
mysharedAbs.x = std::max<uint>(sharedMem.x, sizeof(uint));
}
else
{
num = 1;
if(Procedure::NumThreads != 0 && MultiPackage)
num = numThreads / AvoidZero<Procedure::NumThreads>::val;
mysharedMul.x = sizeof(uint);
}
if(copyToShared)
mysharedMul.y = sizeof(typename Procedure::ExpectedData);
mysharedMul.z = Procedure::sharedMemory;
uint4 current;
current.x = std::max<uint>(sharedMem.x, (mysharedMul.x*num + mysharedAbs.x +15)/16*16);
current.y = std::max<uint>(sharedMem.y, (mysharedMul.y*num + mysharedAbs.y +15)/16*16);
current.z = std::max<uint>(sharedMem.z, (mysharedMul.z*num + mysharedAbs.z +15)/16*16);
while(current.x + current.y + current.z > static_cast<unsigned>(maxShared) )
{
if(--num <= 0)
{
printf("ERROR: cannot fulfill shared memory requirements!!\n");
num = 1;
break;
}
current.x = std::max<uint>(sharedMem.x, (mysharedMul.x*num + mysharedAbs.x +15)/16*16);
current.y = std::max<uint>(sharedMem.y, (mysharedMul.y*num + mysharedAbs.y +15)/16*16);
current.z = std::max<uint>(sharedMem.z, (mysharedMul.z*num + mysharedAbs.z +15)/16*16);
}
//printf("proc %d can execute %d items at maximum: %d %d %d\n", PROCEDURE::ProcedureId, num, (mysharedMul.x*num + mysharedAbs.x +15)/16*16, (mysharedMul.y*num + mysharedAbs.y +15)/16*16, (mysharedMul.z*num + mysharedAbs.z +15)/16*16);
sharedMem.x = current.x;
sharedMem.y = current.y;
sharedMem.z = current.z;
Next:: template updateRequiredShared<MultiPackage>(numThreads, sharedMem, copyToShared, maxShared, MultiExecIdentifieres);
}
};
template <typename A, typename B>
struct typesEqual
{
static const bool value = false;
};
template <typename A>
struct typesEqual<A, A>
{
static const bool value = true;
};
template <bool b, int id_a, int id_b>
struct selectProcId;
template <int id_a, int id_b>
struct selectProcId<true, id_a, id_b>
{
static const int value = id_a;
};
template <int id_a, int id_b>
struct selectProcId<false, id_a, id_b>
{
static const int value = id_b;
};
template <typename ProcInfo, typename Proc>
struct findProcId
{
static const int value = selectProcId<typesEqual<typename ProcInfo::Procedure, Proc>::value, ProcInfo::ProcedureId, findProcId<typename ProcInfo::Next, Proc>::value>::value;
};
template <typename Proc>
struct findProcId<ProcInfoEnd, Proc>
{
static const int value = -1;
};
template<class TProcInfo>
class ProcedureIdentifier
{
int procId;
public:
__inline__ __device__ ProcedureIdentifier(int procId) : procId(procId) { };
template<class TProc>
__inline__ __device__ static ProcedureIdentifier create()
{
return ProcedureIdentifier(findProcId<TProcInfo, TProc>::value);
}
template<class TProc>
__inline__ __device__ bool equals()
{
return findProcId<TProcInfo, TProc>::value == procId;
}
__inline__ __device__ operator int()
{
return procId;
}
};
template<class Procedure, class Next = ProcInfoEnd>
class N : public ProcInfo<Procedure, Next>
{ };
template<class TProcInfo, int id>
struct Select
{
typedef typename Select<typename TProcInfo::Next, id-1>::Procedure Procedure;
};
template<class TProcInfo>
struct Select<TProcInfo, 0>
{
typedef typename TProcInfo::Procedure Procedure;
};
template <int ElementSize>
struct DataAlignment
{
struct Type
{
static const int NumElements = (ElementSize+3)/4;
unsigned int data[NumElements];
__host__ __device__ Type()
{
}
__host__ __device__ __inline__
const Type& operator = ( const Type& other)
{
for(int i = 0; i < NumElements; ++i)
data[i] = other.data[i];
return *this;
}
__host__ __device__ __inline__
const volatile Type& operator = ( const Type& other) volatile
{
for(int i = 0; i < NumElements; ++i)
data[i] = other.data[i];
return *this;
}
__host__ __device__ __inline__
const Type& operator = ( const volatile Type& other)
{
for(int i = 0; i < NumElements; ++i)
data[i] = other.data[i];
return *this;
}
};
};
template <>
struct DataAlignment<1>
{
typedef unsigned int Type;
};
template <>
struct DataAlignment<2>
{
typedef unsigned int Type;
};
template <>
struct DataAlignment<3>
{
typedef unsigned int Type;
};
template <>
struct DataAlignment<4>
{
typedef unsigned int Type;
};
template<class PriorityEvaluation, class TProcInfo>
class ProcInfoWithPriority : public TProcInfo
{
public:
template<int Phase>
class Priority : public PriorityEvaluation { };
};
template<int TNumPhases, template<class /*Proc*/, int /*Phase*/> class TPhaseTraits, template <int /*Phase*/> class TPriority, class TProcInfo>
class ProcInfoMultiPhase : public TProcInfo
{
public:
static const int NumPhases = TNumPhases;
template<class TTProc, int Phase>
class PhaseTraits : public TPhaseTraits<TTProc,Phase>{ };
template<int Phase>
class Priority : public TPriority<Phase> { };
};
template<class A, class B, bool useA>
struct ClassSelector;
template<class A, class B>
struct ClassSelector<A,B, true>
{
typedef A TheClass;
};
template<class A, class B>
struct ClassSelector<A,B, false>
{
typedef B TheClass;
};
template<class TThisAttachment, class Visitor, class ThisProc, class TargetProc, class Next>
class VisitSpecificSelector
{
public:
__inline__ __device__ static bool visit(Next& next, Visitor& visitor, TThisAttachment& data)
{
return next . template VisitSpecific<Visitor, TargetProc>(visitor);
}
};
template<class TThisAttachment, class Visitor, class MatchProc, class Next>
class VisitSpecificSelector<TThisAttachment, Visitor,MatchProc,MatchProc,Next>
{
public:
__inline__ __device__ static bool visit(Next& next, Visitor& visitor, TThisAttachment& data)
{
return visitor . template visit< TThisAttachment >(data);
}
};
template<template<class /*Procedure*/> class TAttachment, class TProcInfo>
class Attach
{
typedef TAttachment<typename TProcInfo::Procedure> TThisAttachment;
TThisAttachment data;
Attach<TAttachment, typename TProcInfo::Next> next;
template<class Visitor>
struct RandVisitorBeg
{
int notBefore, i;
Visitor & v;
__inline__ __device__ RandVisitorBeg(Visitor & v, int randOffset) : notBefore(randOffset), i(0), v(v) { }
template<class T>
__inline__ __device__ bool visit(T& data)
{
if(i < notBefore)
{
++i;
return false;
}
return v . template visit<T>(data);
}
};
template<class Visitor>
struct RandVisitorEnd
{
int notBefore, i;
Visitor & v;
bool runOver;
__inline__ __device__ RandVisitorEnd(Visitor & v, int randOffset) : notBefore(randOffset), i(0), v(v), runOver(false) { }
template<class T>
__inline__ __device__ bool visit(T& data)
{
if(i < notBefore)
{
++i;
return v . template visit<T>(data);
}
runOver = true;
return true;
}
};
public:
template<class Visitor>
__inline__ __device__ bool VisitAll(Visitor& visitor)
{
if(visitor.template visit<TThisAttachment >(data))
return true;
return next. template VisitAll<Visitor>(visitor);
}
template<class Visitor>
__inline__ __device__ bool VisitAllRandStart(Visitor& visitor)
{
int offset = whippletree::random::rand() % TProcInfo :: NumProcedures;
RandVisitorBeg<Visitor> v(visitor, offset);
if(VisitAll<RandVisitorBeg<Visitor> > (v))
return true;
RandVisitorEnd<Visitor> v2(visitor, offset);
VisitAll<RandVisitorEnd<Visitor> > (v2);
return !v2.runOver;
}
template<class Visitor, class TargetProc>
__inline__ __device__ bool VisitSpecific(Visitor& visitor)
{
//printf("%d vs %d\n", TargetProc::myid, TProcInfo::Procedure::myid);
return VisitSpecificSelector<TThisAttachment,Visitor, typename TProcInfo::Procedure, TargetProc, Attach<TAttachment, typename TProcInfo::Next> >::visit(next, visitor, data);
}
template<class Visitor>
__inline__ __device__ bool VisitSpecific(Visitor& visitor, int ProcId)
{
if(ProcId == TProcInfo::Procedure::ProcedureId)
return visitor . template visit< TThisAttachment >(data);
return next . template VisitSpecific<Visitor>(visitor, ProcId);
}
};
template<template<class /*Procedure*/> class TAttachment>
class Attach<TAttachment, ProcInfoEnd>
{
public:
template<class Visitor>
__inline__ __device__ bool VisitAll(Visitor& visitor)
{
return false;
}
template<class Visitor, class TargetProc>
__inline__ __device__ bool VisitSpecific(Visitor& visitor)
{
return false;
}
template<class Visitor>
__inline__ __device__ bool VisitSpecific(Visitor& visitor, int ProcId)
{
return false;
}
};
template<class TProcInfo, class TCustom = void>
class ProcInfoVisitor
{
public:
template<class Visitor>
static bool HostVisit(Visitor& visitor)
{
if(visitor.template visit<typename TProcInfo::Procedure, TCustom >())
return true;
return ProcInfoVisitor<typename TProcInfo::Next, TCustom> :: template HostVisit<Visitor>(visitor);
}
template<class Visitor>
static __inline__ __device__ bool Visit(Visitor& visitor)
{
if(visitor.template visit<typename TProcInfo::Procedure, TCustom >())
return true;
return ProcInfoVisitor<typename TProcInfo::Next, TCustom > :: template Visit<Visitor>(visitor);
}
};
template<class TCustom>
class ProcInfoVisitor<ProcInfoEnd, TCustom>
{
public:
template<class Visitor>
static bool HostVisit(Visitor& visitor)
{
return false;
}
template<class Visitor>
static __inline__ __device__ bool Visit(Visitor& visitor)
{
return false;
}
};