-
Notifications
You must be signed in to change notification settings - Fork 8
/
queuingMultiPhase.cuh
575 lines (488 loc) · 19.5 KB
/
queuingMultiPhase.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
// 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 "procinfoTemplate.cuh"
// Iterators to construct ProcInfo for current Phase only
template< template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class NextOrig, int Phase, bool MatchPhase>
struct PhaseProcInfoInter;
template< template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class NextOrig, int Phase>
struct PhaseProcInfoInter<TPhaseTraits,NextOrig,Phase,true>: public ProcInfo<typename NextOrig::Procedure, PhaseProcInfoInter<TPhaseTraits, typename NextOrig::Next, Phase, TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active> >
{
// static void tell()
//{
// printf("PhaseProcInfoInterUse(%d)->(%d:%d)->", NextOrig::Procedure::myid,NextOrig::Next::Procedure::myid,TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active);
// PhaseProcInfoInter<TPhaseTraits, typename NextOrig::Next, Phase, TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active>::tell();
//}
};
template< template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class NextOrig, int Phase>
struct PhaseProcInfoInter<TPhaseTraits,NextOrig,Phase,false> : public PhaseProcInfoInter<TPhaseTraits, typename NextOrig::Next, Phase, TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active>
{
// static void tell()
//{
// printf("PhaseProcInfoInterForward(%d)->(%d:%d)->", NextOrig::Procedure::myid,NextOrig::Next::Procedure::myid,TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active);
// PhaseProcInfoInter<TPhaseTraits, typename NextOrig::Next, Phase, TPhaseTraits<typename NextOrig::Next::Procedure,Phase>::Active>::tell();
//}
};
template< template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, int Phase>
struct PhaseProcInfoInter<TPhaseTraits,ProcInfoEnd,Phase,true> : public ProcInfoEnd
{
//static void tell()
//{
// printf("PhaseProcInfoInterEnd_true\n");
//}
};
template< template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, int Phase>
struct PhaseProcInfoInter<TPhaseTraits,ProcInfoEnd,Phase,false> : public ProcInfoEnd
{
//static void tell()
//{
// printf("PhaseProcInfoInterEnd_false\n");
//}
};
template<class Priority, template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class ProcedureInfoOrig, int Phase, bool MatchPhase>
struct PhaseProcInfo;
template<class Priority, template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class ProcedureInfoOrig, int Phase>
struct PhaseProcInfo<Priority, TPhaseTraits, ProcedureInfoOrig, Phase, true> : public ProcInfoWithPriority<Priority, PhaseProcInfoInter<TPhaseTraits, ProcedureInfoOrig, Phase, true > >
{
//static void tell()
//{
// printf("PhaseProcInfoUse(%d)->", ProcedureInfoOrig::Procedure::myid);
// PhaseProcInfoInter<TPhaseTraits, ProcedureInfoOrig, Phase, true > ::tell();
//}
};
template<class TPriority, template<class /*TTProc*/, int /*Phase*/> class TPhaseTraits, class ProcedureInfoOrig, int Phase>
struct PhaseProcInfo<TPriority, TPhaseTraits, ProcedureInfoOrig, Phase, false> : public PhaseProcInfo<TPriority, TPhaseTraits, typename ProcedureInfoOrig::Next, Phase, TPhaseTraits<typename ProcedureInfoOrig::Next::Procedure,Phase>::Active >
{
//static void tell()
//{
// printf("PhaseProcInfoForward(%d)->(%d:%d)->", ProcedureInfoOrig::Procedure::myid,ProcedureInfoOrig::Next::Procedure::myid,TPhaseTraits<typename ProcedureInfoOrig::Next::Procedure,Phase>::Active);
// PhaseProcInfo<TPriority, TPhaseTraits, typename ProcedureInfoOrig::Next, Phase, TPhaseTraits<typename ProcedureInfoOrig::Next::Procedure,Phase>::Active >::tell();
//}
};
template<class Priority, template<class /*TTProc*/, int /*Phase*/> class PhaseTraits, int Phase>
struct PhaseProcInfo<Priority, PhaseTraits, ProcInfoEnd, Phase, true> : public ProcInfoEnd
{
//static void tell()
//{
// printf("PhaseProcInfoEnd_true\n");
//}
};
template<class Priority, template<class /*TTProc*/, int /*Phase*/> class PhaseTraits, int Phase>
struct PhaseProcInfo<Priority, PhaseTraits, ProcInfoEnd, Phase, false> : public ProcInfoEnd
{
//static void tell()
//{
// printf("PhaseProcInfoEnd_false\n");
//}
};
// Iterator to construct queues for all phases
template<template<class /*ProcedureInfo*/> class InternalQueue, class ProcedureInfo, int Phase, int NumPhases>
struct PhaseQueues
{
template<class TProc, int Phase_>
class MyPhaseTraits : public ProcedureInfo:: template PhaseTraits<TProc, Phase_ > { };
typedef PhaseProcInfo<
typename ProcedureInfo:: template Priority<Phase>,
MyPhaseTraits,
ProcedureInfo,
Phase,
ProcedureInfo:: template PhaseTraits<typename ProcedureInfo::Procedure,Phase>::Active > TProcInfo;
typedef InternalQueue< TProcInfo > TQueue;
typedef PhaseQueues <InternalQueue, ProcedureInfo, Phase+1, NumPhases> NextQueue;
TQueue q;
NextQueue nq;
template<class Visitor>
__device__ bool visit(Visitor& visitor);
template<class Visitor>
__host__ static bool staticVisit(Visitor& visitor);
__inline__ __device__ void init()
{
q.init();
nq.init();
}
__inline__ __device__ void record()
{
q.record();
nq.record();
}
__inline__ __device__ void reset()
{
q.reset();
nq.reset();
}
template<class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData data, int phase = 0)
{
if(phase == Phase)
return q. template enqueueInitial<PROCEDURE>(data);
return nq. template enqueueInitial<PROCEDURE>(data, phase);
}
template<int Threads, class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData* data, int phase = 0)
{
if(phase == Phase)
return q. template enqueueInitial<Threads,PROCEDURE>(data);
return nq. template enqueueInitial<Threads,PROCEDURE>(data, phase);
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData data, int phase = 0)
{
if(Phase == phase)
{
if(Phase == CurrentPhase)
return q.template enqueue<PROCEDURE>(data);
else
return q. template enqueueInitial<PROCEDURE>(data);
}
return nq. template enqueue<PROCEDURE,CurrentPhase>(data, phase);
}
template<int threads, class PROCEDURE, int CurrentPhase>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData* data, int phase = 0)
{
if(Phase == phase)
{
if(Phase == CurrentPhase)
return q.template enqueue<threads,PROCEDURE>(data);
else
return q. template enqueueInitial<threads,PROCEDURE>(data);
}
return nq. template enqueue<threads,PROCEDURE,CurrentPhase>(data, phase);
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeue(void*& data, int*& procId, int maxShared = -1)
{
if(Phase == CurrentPhase)
return q. template dequeue<MultiProcedure>(data, procId, maxShared);
return nq . template dequeue<MultiProcedure,CurrentPhase>(data, procId, maxShared);
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeueSelected(void*& data, int procId, int maxNum = -1)
{
if(Phase == CurrentPhase)
return q. template dequeueSelected<MultiProcedure>(data, procId, maxNum);
return nq . template dequeueSelected<MultiProcedure,CurrentPhase>(data, procId, maxNum);
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeueStartRead(void*& data, int*& procId, int maxShared = -1)
{
if(Phase == CurrentPhase)
return q. template dequeueStartRead<MultiProcedure>(data, procId, maxShared);
return nq . template dequeueStartRead<MultiProcedure,CurrentPhase>(data, procId, maxShared);
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ int reserveRead(int maxNum = -1)
{
if(Phase == CurrentPhase)
return q. template reserveRead<PROCEDURE>(maxNum);
return nq . template reserveRead<PROCEDURE,CurrentPhase>(maxNum);
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ int startRead(void*& data, int num)
{
if(Phase == CurrentPhase)
return q. template startRead<PROCEDURE>(data,num);
return nq . template startRead<PROCEDURE,CurrentPhase>(data,num);
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ void finishRead(int id, int num)
{
if(Phase == CurrentPhase)
return q. template finishRead<PROCEDURE>(id,num);
return nq . template finishRead<PROCEDURE,CurrentPhase>(id,num);
}
template<int CurrentPhase>
__inline__ __device__ void numEntries(int* counts)
{
if(Phase == CurrentPhase)
return q. numEntries(counts);
return nq . template numEntries<CurrentPhase>(counts);
}
template<int CurrentPhase>
__inline__ __device__ void workerStart()
{
if(Phase == CurrentPhase)
return q. workerStart();
return nq . template workerStart<CurrentPhase>();
}
template<int CurrentPhase>
__inline__ __device__ void workerMaintain()
{
if(Phase == CurrentPhase)
return q. workerMaintain();
return nq . template workerMaintain<CurrentPhase>();
}
template<int CurrentPhase>
__inline__ __device__ void workerEnd()
{
if(Phase == CurrentPhase)
return q. workerEnd();
return nq . template workerEnd<CurrentPhase>();
}
template<int CurrentPhase>
__inline__ __device__ void globalMaintain()
{
if(Phase == CurrentPhase)
return q. globalMaintain();
return nq . template globalMaintain<CurrentPhase>();
}
};
template<template<class /*ProcedureInfo*/> class InternalQueue, class ProcedureInfo, int EndPhase>
struct PhaseQueues<InternalQueue, ProcedureInfo, EndPhase,EndPhase>
{
__inline__ __device__ void init()
{ }
__inline__ __device__ void record()
{ }
__inline__ __device__ void reset()
{ }
template<class Visitor>
__device__ bool visit(Visitor& visitor)
{
return false;
}
template<class Visitor>
__host__ static bool staticVisit(Visitor& visitor)
{
return false;
}
template<class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData data, int phase = 0)
{
return false;
}
template<int Threads, class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData *data, int phase = 0)
{
return false;
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData data, int phase = 0)
{
return false;
}
template<int threads, class PROCEDURE, int CurrentPhase>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData* data, int phase = 0)
{
return false;
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeue(void*& data, int*& procId, int maxShared)
{
return 0;
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeueSelected(void*& data, int procId, int maxNum)
{
return 0;
}
template<bool MultiProcedure, int CurrentPhase>
__inline__ __device__ int dequeueStartRead(void*& data, int*& procId, int maxShared)
{
return 0;
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ int reserveRead(int maxNum)
{
return 0;
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ int startRead(void*& data, int num)
{
return -1;
}
template<class PROCEDURE, int CurrentPhase>
__inline__ __device__ void finishRead(int id, int num)
{ }
template<int CurrentPhase>
__inline__ __device__ void numEntries(int* counts)
{ }
template<int CurrentPhase>
__inline__ __device__ void workerStart()
{ }
template<int CurrentPhase>
__inline__ __device__ void workerMaintain()
{ }
template<int CurrentPhase>
__inline__ __device__ void workerEnd()
{ }
template<int CurrentPhase>
__inline__ __device__ void globalMaintain()
{ }
};
template<class TProcedureInfo, template<class /*ProcedureInfo*/> class TInternalQueue>
class MultiPhaseQueue
{
public:
template<class ProcInfo>
class InternalQueue : public TInternalQueue<ProcInfo> { };
typedef TProcedureInfo ProcedureInfo;
typedef PhaseQueues<InternalQueue,ProcedureInfo,0,ProcedureInfo::NumPhases> MPhaseQueues;
MPhaseQueues qs;
template<class Visitor>
__device__ bool visit(Visitor& visitor)
{
return qs.template visit<Visitor>(visitor);
}
template<class Visitor>
__host__ static bool staticVisit(Visitor& visitor)
{
return MPhaseQueues :: template staticVisit<Visitor>(visitor);
}
__inline__ __device__ void init()
{
qs.init();
}
__inline__ __device__ void record()
{
qs.record();
}
__inline__ __device__ void reset()
{
qs.reset();
}
static std::string name()
{
return std::string("MultiPhaseQueue") + InternalQueue<TProcedureInfo>::name();
}
};
template<class MultiPhaseInstance, int CurrentPhase>
class CurrentMultiphaseQueue : public MultiPhaseInstance
{
public:
static const int Phase = CurrentPhase;
template<class TProc, int Phase>
class MyPhaseTraits : public MultiPhaseInstance::ProcedureInfo:: template PhaseTraits<TProc, Phase > { };
typedef PhaseProcInfo<
typename MultiPhaseInstance::ProcedureInfo:: template Priority<Phase>,
MyPhaseTraits,
typename MultiPhaseInstance::ProcedureInfo,
Phase,
MultiPhaseInstance::ProcedureInfo:: template PhaseTraits<typename MultiPhaseInstance::ProcedureInfo::Procedure,Phase>::Active > CurrentPhaseProcInfo;
//static void pStart()
//{
// printf("%d %d\n", ProcedureInfo::Procedure::myid,MultiPhaseInstance::ProcedureInfo:: template PhaseTraits<typename ProcedureInfo::Procedure,Phase>::Active );
// CurrentPhaseProcInfo::tell();
//}
static const bool needTripleCall = MultiPhaseInstance::template InternalQueue<CurrentPhaseProcInfo>::needTripleCall;
static const bool supportReuseInit = MultiPhaseInstance::template InternalQueue<CurrentPhaseProcInfo>::supportReuseInit;
static const int globalMaintainMinThreads = MultiPhaseInstance::template InternalQueue<CurrentPhaseProcInfo>::globalMaintainMinThreads;
static int globalMaintainSharedMemory(int Threads) { return MultiPhaseInstance::template InternalQueue<CurrentPhaseProcInfo>::globalMaintainSharedMemory(Threads); }
static const int requiredShared = MultiPhaseInstance::template InternalQueue<CurrentPhaseProcInfo>::requiredShared;
template<class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData data, int phase = 0)
{
return MultiPhaseInstance::qs. template enqueueInitial<PROCEDURE>(data, phase);
}
template<int threads, class PROCEDURE>
__inline__ __device__ bool enqueueInitial(typename PROCEDURE::ExpectedData* data, int phase = 0)
{
return MultiPhaseInstance::qs. template enqueueInitial<threads, PROCEDURE>(data, phase);
}
template<class PROCEDURE>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData data, int phase = 0)
{
return MultiPhaseInstance::qs. template enqueue<PROCEDURE, CurrentPhase>(data, phase);
}
template<int threads, class PROCEDURE>
__inline__ __device__ bool enqueue(typename PROCEDURE::ExpectedData* data, int phase = 0)
{
return MultiPhaseInstance::qs. template enqueue<threads,PROCEDURE, CurrentPhase>(data, phase);
}
template<bool MultiProcedure>
__inline__ __device__ int dequeue(void*& data, int*& procId, int maxShared = -1)
{
return MultiPhaseInstance::qs. template dequeue<MultiProcedure, CurrentPhase>(data, procId,maxShared);
}
template<bool MultiProcedure>
__inline__ __device__ int dequeueSelected(void*& data, int procId, int maxNum = -1)
{
return MultiPhaseInstance::qs. template dequeueSelected<MultiProcedure, CurrentPhase>(data, procId,maxNum);
}
template<bool MultiProcedure>
__inline__ __device__ int dequeueStartRead(void*& data, int*& procId, int maxShared = -1)
{
return MultiPhaseInstance::qs. template dequeueStartRead<MultiProcedure, CurrentPhase>(data, procId,maxShared);
}
template<class PROCEDURE>
__inline__ __device__ int reserveRead(int maxNum = -1)
{
return MultiPhaseInstance::qs. template reserveRead<PROCEDURE, CurrentPhase>(maxNum);
}
template<class PROCEDURE>
__inline__ __device__ int startRead(void*& data, int num)
{
return MultiPhaseInstance::qs. template startRead<PROCEDURE, CurrentPhase>(data, num);
}
template<class PROCEDURE>
__inline__ __device__ void finishRead(int id, int num)
{
return MultiPhaseInstance::qs. template finishRead<PROCEDURE, CurrentPhase>(id, num);
}
__inline__ __device__ void numEntries(int* counts)
{
return MultiPhaseInstance::qs. template numEntries<CurrentPhase>(counts);
}
__inline__ __device__ void workerStart()
{
return MultiPhaseInstance::qs. template workerStart<CurrentPhase>();
}
__inline__ __device__ void workerMaintain()
{
return MultiPhaseInstance::qs. template workerMaintain<CurrentPhase>();
}
__inline__ __device__ void workerEnd()
{
return MultiPhaseInstance::qs. template workerEnd<CurrentPhase>();
}
__inline__ __device__ void globalMaintain()
{
return MultiPhaseInstance::qs. template globalMaintain<CurrentPhase>();
}
};
template<template<class /*ProcedureInfo*/> class InternalQueue, class ProcedureInfo, int Phase, int NumPhases>
template<class Visitor>
__device__ bool PhaseQueues<InternalQueue,ProcedureInfo,Phase,NumPhases>::visit(Visitor& visitor)
{
typedef CurrentMultiphaseQueue< MultiPhaseQueue< ProcedureInfo, InternalQueue>, Phase > VisibleQ;
if(!visitor.template visit<TProcInfo, VisibleQ, Phase>(q))
return nq. template visit<Visitor>(visitor);
return true;
}
template<template<class /*ProcedureInfo*/> class InternalQueue, class ProcedureInfo, int Phase, int NumPhases>
template<class Visitor>
__host__ bool PhaseQueues<InternalQueue,ProcedureInfo,Phase,NumPhases>::staticVisit(Visitor& visitor)
{
typedef CurrentMultiphaseQueue< MultiPhaseQueue< ProcedureInfo, InternalQueue>, Phase > VisibleQ;
if(!visitor.template visit<TProcInfo, VisibleQ, Phase>())
return NextQueue :: template staticVisit<Visitor>(visitor);
return true;
}