예제 #1
0
파일: TBBNode.hpp 프로젝트: Kyushick/sight
 inline void join( const BlockedRangeWDPReducer<WDPin> &other ) {
   wd.result = wd.reduce( wd.result, other.wd.result );
 }
예제 #2
0
파일: TBBNode.hpp 프로젝트: Kyushick/sight
 void operator()(tbb::blocked_range<int> &rng)
 { 
   for(int i=rng.begin(); i<rng.end(); ++i) {
     wd.result = wd.reduce(wd.result, wd.generate(i));
   }
 }