Lines Matching refs:block
131 process the contents of a block serially. The blocks have the same
132 dependence pattern, but at a block scale. Hence scheduling overheads
136 The parallel code follows. Each block consists of ``N×N`` elements.
137 Each block has an associated atomic counter. Array ``Count``
140 starting with the block at the origin since it has no predecessors.
158 typedef pair<size_t,size_t> block;
159 block origin(0,0);
161 [=]( const block& b, oneapi::tbb::feeder<block>&feeder ) {
162 // Extract bounds on block
169 // Process the block
176 feeder.add( block(bi,bj+1) );
178 feeder.add( block(bi+1,bj) ); }