Title: Fast and Vectorizable Alternative to Binary Search in O(1) Applicable to a Wide Domain of Sorted Arrays of Floating Point Numbers
Authors: Fabio Cannizzo
Published: 29th June 2015 (Monday) @ 13:44:21
Link: http://arxiv.org/abs/1506.08620v3

Abstract

Given an array of strictly ordered floating point numbers and a floating point number in the interval , a common problem is to find the index of the interval containing . This problem arises for instance in the context of spline interpolation or the computation of empirical probability distribution from empirical data. Often it needs to be solved for a large number of different values and the same array , which makes it worth investing resources upfront in pre-processing the array with the goal of speeding up subsequent search operations. In some cases the values to be processed are known simultaneously in blocks of size , which offers the opportunity to solve the problem vectorially, exploiting the parallel capabilities of modern CPUs. The common solution is to sequentially invoke times the well known binary search algorithm, which has complexity per individual search and, in its classic formulation, is not vectorizable, i.e. is not SIMD friendly. This paper describes technical improvements to the binary search algorithm, which make it faster and vectorizable. Next it proposes a new vectorizable algorithm, based on an indexing technique, applicable to a wide family of partitions, which solves the problem with complexity per individual search at the cost of introducing an initial overhead to compute the index and requiring extra memory for its storage. Test results using streaming SIMD extensions compare the performance of the algorithm versus various benchmarks and demonstrate its effectiveness. Depending on the test case, the algorithm can produce a throughput up to two orders of magnitude larger than the classic binary search. Applicability limitations and cache-friendliness related aspects are also discussed.