Fastest code C/C++ to select the median in a set of 27 floating point values - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:46:03Z http://stackoverflow.com/feeds/question/810657 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values 16 Fastest code C/C++ to select the median in a set of 27 floating point values chmike 2009-05-01T08:33:15Z 2009-09-11T20:17:29Z <p>This is the well know select algorithm. see <a href="http://en.wikipedia.org/wiki/Selection_algorithm" rel="nofollow">http://en.wikipedia.org/wiki/Selection_algorithm</a>.</p> <p>I need it to find the median value of a set of 3x3x3 voxel values. Since the volume is made of a billion voxels and the algorithm is recursive, it better be a little bit fast. In general it can be expected that values are relatively close.</p> <p>The fastest known algorithm I have tried out so far uses the quick sort partition function. I would like to know if there is a faster one. </p> <p>I've "invented" a 20% faster one using two heaps, but expected an even faster one using a hash. Before implementing this, I'd like to know if a blitz fast solution already exist out there. </p> <p>The fact that I'm using floats shouldn't matter since they can be considered as unsigned integer after inverting the sign bit. The order will be preserved.</p> <p>EDIT: benchmark and source code moved into a separate answer as suggested by Davy Landman. See below for the answer by chmike.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/810680#810680 0 Answer by Martin York for Fastest code C/C++ to select the median in a set of 27 floating point values Martin York 2009-05-01T08:51:57Z 2009-05-01T09:11:59Z <p>If you want to see algorithms look up the books by Donald E. Knuth. </p> <p>PS. If you think you have invented something better, then you should be able to show that the complexity is similar or better to the complexity of the known algorithms. Which for variations based on bucket and radix is O(n) on the other hand quick-sort is only O(n.log(n)). A method that is 20% faster is still O(n.log(n)) until you can show the algorithm :-)</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/810771#810771 0 Answer by rstaveley for Fastest code C/C++ to select the median in a set of 27 floating point values rstaveley 2009-05-01T09:24:00Z 2009-05-01T09:24:00Z <p>If there are 3x3x3=27 possible values (if so why the floats?), can you create an array of 27 elements and count each possibility in one pass through the data?</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/810790#810790 1 Answer by unwesen for Fastest code C/C++ to select the median in a set of 27 floating point values unwesen 2009-05-01T09:33:52Z 2009-05-01T09:33:52Z <p>I suppose your best bet is to take an existing sorting algorithm and try to figure out whether you can adapt it so that the set does not need to be fully sorted. For determining the median, you need at most half the values sorted, either the lower or higher half would be enough:</p> <pre><code>original: | 5 | 1 | 9 | 3 | 3 | sorted: | 1 | 3 | 3 | 5 | 9 | lower half sorted: | 1 | 3 | 3 | 9 | 5 | higher half sorted: | 3 | 1 | 3 | 5 | 9 | </code></pre> <p>The other half would be a bucket of unsorted values that merely share the property of being larger/smaller or equal to the largest/smallest sorted value.</p> <p>But I have no ready algorithm for that, it's just an idea of how you might take a short-cut in your sorting.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/810905#810905 11 Answer by newacct for Fastest code C/C++ to select the median in a set of 27 floating point values newacct 2009-05-01T10:23:13Z 2009-05-02T17:19:50Z <p>The selection algorithm is linear time (O(n)). Complexity-wise you can't do better than linear time, because it takes linear time to read in all the data. So you couldn't have made something that is faster complexity-wise. Perhaps you have something that is a constant factor faster on certain inputs? I doubt it would make much of a difference.</p> <p>C++ already includes the linear-time selection algorithm. Why not just use it?</p> <pre><code>std::vector&lt;YourType&gt;::iterator first = yourContainer.begin(); std::vector&lt;YourType&gt;::iterator last = yourContainer.end(); std::vector&lt;YourType&gt;::iterator middle = first + (last - first) / 2; std::nth_element(first, middle, last); // can specify comparator as optional 4th arg YourType median = *middle; </code></pre> <p>Edit: Technically, that is only the median for a container of odd length. For one of even length, it will get the "upper" median. If you want the traditional definition of median for even length, you might have to run it twice, once for each of the two "middles" at <code>first + (last - first) / 2</code> and <code>first + (last - first) / 2 - 1</code> and then average them or something.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/810939#810939 9 Answer by stephan for Fastest code C/C++ to select the median in a set of 27 floating point values stephan 2009-05-01T10:36:55Z 2009-05-04T09:09:52Z <p>The question cannot easily be answered for the simple reason that the performance of one algorithm relative to another depends as much the on compiler / processor / data structure combination as on the algorithm itself, as you surely know</p> <p>Therefore your approach to try a couple of them seems good enough. And yes, quicksort should be pretty fast. If you haven't done so, you might want to try insertionsort which often performs better on small data sets. This said, just settle on a sorting algo that does the job fast enough. You will typically not get 10-times faster just be picking the "right" algo.</p> <p>To get substantial speed-ups, the better way frequently is to use more structure. Some ideas that worked for me in the past with large-scale problems:</p> <ul> <li><p>Can you efficiently pre-calculate while creating the voxels and store 28 instead of 27 floats?</p></li> <li><p>Is an approximate solution good enough? If so, just look at the median of, say 9 values, since "in general it can be expected that values are relatively close." Or you can replace it with the average as long as the values are relatively close.</p></li> <li><p>Do you really need the median for all billions of voxels? Maybe you have an easy test whether you need the median, and can then only calculate for the relevant sub-set. </p></li> <li><p>If nothing else helps: look at the asm code that the compiler generates. You might be able write asm code that is substantially faster (e.g. by doing all the calcs using registers).</p></li> </ul> <p><strong>Edit:</strong> For what it's worth, I have attached the (partial) insertionsort code mentioned in the comment below (totally untested). If <code>numbers[]</code> is an array of size <code>N</code>, and you want the smallest <code>P</code> floats sorted at the beginning of the array, call <code>partial_insertionsort&lt;N, P, float&gt;(numbers);</code>. Hence if you call <code>partial_insertionsort&lt;27, 13, float&gt;(numbers);</code>, <code>numbers[13]</code> will contain the median. To gain additional speed, you would have to unfold the while loop, too. As discussed above, to get really fast, you have to use your knowledge about the data (e.g. is the data already partially sorted? Do you know properties of the distribution of the data? I guess, you get the drift).</p> <pre><code>template &lt;long i&gt; class Tag{}; template&lt;long i, long N, long P, typename T&gt; inline void partial_insertionsort_for(T a[], Tag&lt;N&gt;, Tag&lt;i&gt;) { long j = i &lt;= P+1 ? i : P+1; // partial sort T temp = a[i]; a[i] = a[j]; // compiler should optimize this away where possible while(temp &lt; a[j - 1] &amp;&amp; j &gt; 0) { a[j] = a[j - 1]; j--;} a[j] = temp; partial_insertionsort_for&lt;i+1,N,P,T&gt;(a,Tag&lt;N&gt;(),Tag&lt;i+1&gt;());} template&lt;long i, long N, long P, typename T&gt; inline void partial_insertionsort_for(T a[], Tag&lt;N&gt;, Tag&lt;N&gt;){} template &lt;long N, long P, typename T&gt; inline void partial_insertionsort(T a[]) {partial_insertionsort_for&lt;0,N,P,T&gt;(a, Tag&lt;N&gt;(), Tag&lt;0&gt;());} </code></pre> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/811820#811820 4 Answer by MSalters for Fastest code C/C++ to select the median in a set of 27 floating point values MSalters 2009-05-01T15:12:37Z 2009-05-01T15:12:37Z <p>The most likely algorithm to use in your first attempt is just nth_element; it pretty much gives you what you want directly. Just ask for the 14th element.</p> <p>On your second attempt, the goal is to take advantage of the fixed data size. You do not wnat to allocate any memory at all duing your algorithm. So, copy your voxel values to a pre-allocated array of 27 elements. Pick a pivot, and copy it to the middle of a 53 element array. Copy the remaining values to either side of the pivot. Here you keep two pointers (<code>float* left = base+25, *right=base+27</code>). There are now three possibilities: the left side is larger, the right side is larger, or the both have 12 elements. The last case is trivial; your pivot is the median. Otherwise, call nth_element on either the left side or the right side. The exact value of Nth depends on how many values were larger or smaller than the pivot. For instance, if the division is 12/14, you need the smallest element bigger than the pivot, so Nth=0, and if the division was 14/12, you need the biggest element smaller the pivot, so Nth=13. The worst cases are 26/0 and 0/26, when your pivot was an extreme, but those happen only in 2/27th of all cases.</p> <p>The third improvement (or the first, if you have to use C and do not have nth_element) replaces nth_element entirely. You still have the 53 element array, but this time you fill it directly from the voxel values (saving you an interim copy into a <code>float[27]</code>). The pivot in this first iteration is just voxel[0][0][0]. For subsequent iterations, you use a second pre-allocated <code>float[53]</code> (easier if both are the same size) and copy floats between the two. The basic iteration step here is still: copy the pivot to the middle, sort the rest to the left and the right. At the end of each step, you'll know whether the median is smaller or larger than the current pivot, so you can discard the floats bigger or smaller than that pivot. Per iteration, this eliminates between 1 and 12 elements, with an average of 25% of the remaining.</p> <p>The final iteration, if you still need more speed, is based on the observation that most of your voxels overlap significantly. You pre-calculate for every 3x3x1 slice the median value. Then, when you need an initial pivot for your 3x3x3 voxel cube, you take the median of the the three. You know a priori that there are 9 voxels smaller and 9 voxels larger than that median of medians (4+4+1). So, after the first pivotting step, the worst cases are a 9/17 and a 17/9 split. So, you'd only need to find the 4th or 13th element in a float[17], instead of the 12th or 14th in a float[26].</p> <p><hr /></p> <p>Background: The idea of copying first a pivot and then the rest of a float[N] to a float[2N-1], using left and right pointers is that you fill a float[N] subarray around the pivot, with all elements smaller than the pivot to the left (lower index) and higher to the right (higher index). Now, if you want the Mth element, you might find yourself lucky and have M-1 elements smaller than the pivot, in which case the pivot is the element you need. If there are more than (M-1) elements smaller than the pivot, the Mth element is amongst them, so you can discard the pivot and anything bigger than the pivot, and seacrh for the Mth element in all the lower values. If there are <em>less</em> than (M-1) elements smaller than the pivot, you're looking for a value higher than the pivot. So, you'll discard the pivot and anything smaller than it. Let the number of elements <em>less</em> than the pivot, i.e. to the left of the pivot be L. In the next iteration, you want the (M-L-1)th element of the (N-L-1)floats that are bigger than the pivot.</p> <p>This kind of nth_element algorithm is fairly efficient because most of the work is spent copying floats between two small arrays, both of which will be in cache, and because your state is most of the time represented by 3 pointers (source pointer, left destination pointer, right destination pointer).</p> <p>To show the basic code:</p> <pre><code>float in[27], out[53]; float pivot = out[26] = in[0]; // pivot float* left = out+25, right = out+27 for(int i = 1; i != 27; ++1) if((in[i]&lt;pivot)) *left-- = in[i] else *right++ = in[i]; // Post-condition: The range (left+1, right) is initialized. // There are 25-(left-out) floats &lt;pivot and (right-out)-27 floats &gt;pivot </code></pre> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/812084#812084 2 Answer by Mark Ruzon for Fastest code C/C++ to select the median in a set of 27 floating point values Mark Ruzon 2009-05-01T16:25:16Z 2009-05-01T16:25:16Z <p>Alex Stepanov's new book <a href="http://rads.stackoverflow.com/amzn/click/032163537X" rel="nofollow" title="Elements of Programming">Elements of Programming</a> talks at some length about finding order statistics using the minimum number of average comparisons while minimizing runtime overhead. Unfortunately, a sizable amount of code is needed just to compute the median of 5 elements, and even then he gives as a project finding an alternate solution that uses a fraction of a comparison less on average, so I wouldn't dream of extending that framework to finding the median of 27 elements. And the book won't even be available until 15 June 2009. The point is that because this is a fixed-size problem, there is a direct comparison method that is provably optimal.</p> <p>Also, there is the fact that this algorithm is not being run once in isolation but rather many times, and between most runs only 9 of the 27 values will change. That means in theory some of the work is done already. However, I have not heard of any median filtering algorithms in image processing that take advantage of this fact.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/812451#812451 2 Answer by Shing Yip for Fastest code C/C++ to select the median in a set of 27 floating point values Shing Yip 2009-05-01T17:50:46Z 2009-05-01T17:50:46Z <p>+1 for everybody who mentioned nth_element, but this kind of code is where hand written algorithm is better than STL because you want to generate the most efficient code for that one compiler running on the one CPU with a specific data set. For example, for some CPU/compiler combination std::swap(int, int) maybe slower than hand written swap using XOR (before you reply, i know this is probably true 20 years ago but not anymore). Sometimes performance is gained by hand writing assembly code specific to your CPU. If you plan to take advantage of GPU's stream processors, you may have to design your algorithm accordingly.</p> <p>You mentioned using 2 heaps and keep track of the median as you insert. That's what i did a while ago in a project. I changed the array inplace and used only one heap. I could not think of any faster algorithm, but i'd like to caution you about memory usage, specifically CPU cache memory. You want to be careful with memory access. CPU cache is swapped in and out by page, so you want your algorithm to touch memory that are close together to minimize CPU cache miss. </p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/814524#814524 0 Answer by Jimmy J for Fastest code C/C++ to select the median in a set of 27 floating point values Jimmy J 2009-05-02T09:31:36Z 2009-05-02T09:31:36Z <p>I'm betting that you could calculate them for zero cost - in a separate thread while loading from disk (or however they're generated).</p> <p>What I'm really saying is that 'speed' isn't going to come from bit twiddling because 27 values isn't enough for Big O notation to be a real factor.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/816493#816493 0 Answer by anonymous for Fastest code C/C++ to select the median in a set of 27 floating point values anonymous 2009-05-03T07:01:10Z 2009-05-03T07:01:10Z <p>You might want to have a look at Knuth's Exercise 5.3.3.13. It describes an algorithm due to Floyd that finds the median of n elements using (3/2)n+O(n^(2/3) log n) comparisons, and the constant hidden in the O(·) seems not to be too large in practice.</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/825851#825851 5 Answer by chmike for Fastest code C/C++ to select the median in a set of 27 floating point values chmike 2009-05-05T16:48:20Z 2009-06-12T08:58:56Z <p>The benchmark results of the algorithms considered so far</p> <p>For the protocol and short description of algorithms see below. First value is mean time (seconds) over 200 different sequences and second value is stdDev.</p> <pre><code>HeapSort : 2.287 0.2097 QuickSort : 2.297 0.2713 QuickMedian1 : 0.967 0.3487 HeapMedian1 : 0.858 0.0908 NthElement : 0.616 0.1866 QuickMedian2 : 1.178 0.4067 HeapMedian2 : 0.597 0.1050 HeapMedian3 : 0.015 0.0049 &lt;-- best </code></pre> <p>Protocol: generate 27 random floats using random bits obtained from rand(). Apply each algorithm 5 million times in a row (including prior array copy) and compute average and stdDev over 200 random sequences. C++ code compiled with icc -S -O3 and run on Intel E8400 with 8GB DDR3.</p> <p>Algorithms:</p> <p>HeapSort : full sort of sequence using heap sort and pick middle value. Naive implementation using subscript access.</p> <p>QuickSort: full in place sort of sequence using quick sort and pick middle value. Naive implementation using subscript access. </p> <p>QuickMedian1: quick select algorithm with swapping. Naive implementation using subscript access.</p> <p>HeapMedian1: in place balanced heap method with prior swapping. Naive implementation using subscript access.</p> <p>NthElement : uses the nth_element STL algorithm. Data is copied into the vector using memcpy( vct.data(), rndVal, ... );</p> <p>QuickMedian2: uses quick select algorithm with pointers and copy in two buffers to avoid swaping. Based on proposal of MSalters.</p> <p>HeapMedian2 : variant of my invented algorithm using dual heaps with shared heads. Left heap has biggest value as head, right has smallest value as head. Initialize with first value as common head and first median value guess. Add subsequent values to left heap if smaller than head, otherwise to right heap, until one of the heap is full. It is full when it contains 14 values. Then consider only the full heap. If its the right heap, for all values bigger than the head, pop head and insert value. Ignore all other values. If its the left heap, for all values smaller than the head, pop head and insert it in heap. Ignore all other values. When all values have been proceeded, the common head is the median value. It uses integer index into array. The version using pointers (64bit) appeared to be nearly twice slower (~1s).</p> <p>HeapMedian3 : same algorithm as HeapMedian2 but optimized. It uses unsigned char index, avoids value swapping and various other little things. The mean and stdDev values are computed over 1000 random sequences. For nth_element I measured 0.508s and a stdDev of 0.159537 with the same 1000 random sequences. HeapMedian3 is thus 33 time faster than the nth_element stl function. Each returned median value is checked against the median value returned by heapSort and they all match. I doubt a method using hash may be significantly faster. </p> <p>EDIT 1: This algorithm can be further optimized. The first phase where elements are dispatched in the left or right heap based on the comparison result doesn't need heaps. It is sufficient to simply append elements to two unordered sequences. The phase one stops as soon as one sequence is full, which means it contains 14 elements (including the median value). The second phase starts by heapifying the full sequence and then proceed as described in the HeapMedian3 algorithm. I'll provide the new code and benchmark as soon as possible. </p> <p>EDIT 2: I implemented and benchmarked the optimized algorithm. But there is no significant performance difference compared heapMedian3. It is even slightly slower on the average. Shown results are confirmed. There might be with much larger sets. Note also that I simply pick the first value as initial median guess. As suggested, one could benefit from the fact that we search a median value in "overlapping" value sets. Using the median of median algorithm would help to pick a much better initial median value guess.</p> <p><hr /></p> <p><strong>Source code of HeapMedian3</strong></p> <pre><code>// return the median value in a vector of 27 floats pointed to by a float heapMedian3( float *a ) { float left[14], right[14], median, *p; unsigned char nLeft, nRight; // pick first value as median candidate p = a; median = *p++; nLeft = nRight = 1; for(;;) { // get next value float val = *p++; // if value is smaller than median, append to left heap if( val &lt; median ) { // move biggest value to the heap top unsigned char child = nLeft++, parent = (child - 1) / 2; while( parent &amp;&amp; val &gt; left[parent] ) { left[child] = left[parent]; child = parent; parent = (parent - 1) / 2; } left[child] = val; // if left heap is full if( nLeft == 14 ) { // for each remaining value for( unsigned char nVal = 27 - (p - a); nVal; --nVal ) { // get next value val = *p++; // if value is to be inserted in the left heap if( val &lt; median ) { child = left[2] &gt; left[1] ? 2 : 1; if( val &gt;= left[child] ) median = val; else { median = left[child]; parent = child; child = parent*2 + 1; while( child &lt; 14 ) { if( child &lt; 13 &amp;&amp; left[child+1] &gt; left[child] ) ++child; if( val &gt;= left[child] ) break; left[parent] = left[child]; parent = child; child = parent*2 + 1; } left[parent] = val; } } } return median; } } // else append to right heap else { // move smallest value to the heap top unsigned char child = nRight++, parent = (child - 1) / 2; while( parent &amp;&amp; val &lt; right[parent] ) { right[child] = right[parent]; child = parent; parent = (parent - 1) / 2; } right[child] = val; // if right heap is full if( nRight == 14 ) { // for each remaining value for( unsigned char nVal = 27 - (p - a); nVal; --nVal ) { // get next value val = *p++; // if value is to be inserted in the right heap if( val &gt; median ) { child = right[2] &lt; right[1] ? 2 : 1; if( val &lt;= right[child] ) median = val; else { median = right[child]; parent = child; child = parent*2 + 1; while( child &lt; 14 ) { if( child &lt; 13 &amp;&amp; right[child+1] &lt; right[child] ) ++child; if( val &lt;= right[child] ) break; right[parent] = right[child]; parent = child; child = parent*2 + 1; } right[parent] = val; } } } return median; } } } } </code></pre> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/1269668#1269668 1 Answer by fi.masini for Fastest code C/C++ to select the median in a set of 27 floating point values fi.masini 2009-08-13T02:04:09Z 2009-08-13T02:04:09Z <p>Good alg!!! I have use it and i have improve the calc so much. I used it in an over 2M float elements array. It is good!!</p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/1412962#1412962 0 Answer by matja for Fastest code C/C++ to select the median in a set of 27 floating point values matja 2009-09-11T19:55:47Z 2009-09-11T20:05:58Z <p>A sorting network generated using the Bose-Nelson algorithm will find the median directly with no loops/recursion using 173 comparisons. If you have the facility to perform comparisions in parallel such as usage of vector-arithmetic instructions then you may be able to group the comparisions into as few as 28 parallel operations.</p> <p>If you are sure that the floats are normalized and not (qs)NaN's, then you can use integer operations to compare IEEE-754 floats which can perform more favorably on some CPU's.</p> <p>A direct conversion of this sorting network to C (gcc 4.2) yields a worst-case of 388 clock cycles on my Core i7.</p> <p><a href="http://jgamble.ripco.net/cgi-bin/nw.cgi?inputs=27&amp;algorithm=best&amp;output=text" rel="nofollow">Sorting Networks</a></p> http://stackoverflow.com/questions/810657/fastest-code-c-c-to-select-the-median-in-a-set-of-27-floating-point-values/1413048#1413048 0 Answer by Boojum for Fastest code C/C++ to select the median in a set of 27 floating point values Boojum 2009-09-11T20:17:29Z 2009-09-11T20:17:29Z <p>Since it sounds like you're performing a median filter on a large array of volume data, you might want to take a look at the <a href="http://www.shellandslate.com/fastmedian.html" rel="nofollow">Fast Median and Bilateral Filtering</a> paper from SIGGRAPH 2006. That paper deals with 2D image processing, but you might be able to adapt the algorithm for 3D volumes. If nothing else, it might give you some ideas on how to step back and look at the problem from a slightly different perspective.</p>