MCPcopy Create free account
hub / github.com/RenderKit/embree / tbbRadixIteration

Method tbbRadixIteration

common/algorithms/parallel_sort.h:394–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

392 }
393
394 void tbbRadixIteration(const Key shift, const bool last,
395 const Ty* __restrict src, Ty* __restrict dst,
396 const size_t numTasks)
397 {
398 affinity_partitioner ap;
399 parallel_for_affinity(numTasks,[&] (size_t taskIndex) { tbbRadixIteration0(shift,src,dst,taskIndex,numTasks); },ap);
400 parallel_for_affinity(numTasks,[&] (size_t taskIndex) { tbbRadixIteration1(shift,src,dst,taskIndex,numTasks); },ap);
401 }
402
403 void tbbRadixSort(const size_t numTasks)
404 {

Callers

nothing calls this directly

Calls 1

parallel_for_affinityFunction · 0.85

Tested by

no test coverage detected