Cache-Efficient String Sorting Using Copying

Total Page:16

File Type:pdf, Size:1020Kb

Cache-Efficient String Sorting Using Copying Cache-Efficient String Sorting Using Copying RANJAN SINHA and JUSTIN ZOBEL RMIT University and DAVID RING Palo Alto, CA Burstsort is a cache-oriented sorting technique that uses a dynamic trie to efficiently divide large sets of string keys into related subsets small enough to sort in cache. In our original burstsort, string keys sharing a common prefix were managed via a bucket of pointers represented as a list or array; this approach was found to be up to twice as fast as the previous best string sorts, mostly because of a sharp reduction in out-of-cache references. In this paper, we introduce C-burstsort, which copies the unexamined tail of each key to the bucket and discards the original key to improve data locality. On both Intel and PowerPC architectures, and on a wide range of string types, we show that sorting is typically twice as fast as our original burstsort and four to five times faster than multikey quicksort and previous radixsorts. A variant that copies both suffixes and record pointers to buckets, CP-burstsort, uses more memory, but provides stable sorting. In current computers, where performance is limited by memory access latencies, these new algorithms can dramatically reduce the time needed for internal sorting of large numbers of strings. Categories and Subject Descriptors: F.2.2 [Analysis of Algorithms]: Sorting; E.5 [Files]: Sorting; E.1 [Data Structures]: Trees; B.3.2 [Memory Structures]: Cache Memories; D.1.0 [Program- ming Techniques]: General General Terms: Algorithms, Design, Experimentation, Performance Additional Key Words and Phrases: Sorting, string management, cache, tries, algorthims, experi- mental algorithms 1. INTRODUCTION Sorting is a core problem in computer science that has been extensively re- searched over the last five decades. It underlies a vast range of computational activities and sorting speed remains a bottleneck in many applications involv- ing large volumes of data. The simplest sorts operate on fixed-size numerical values. String sorts are complicated by the possibility that keys may be long Authors’ addresses: Ranjan Sinha and Justin Zobel, School of Computer Science and In- formation Technology, RMIT University, GPO Box 2476V, Melbourne 3001, Australia; email: {rsinha,jz}@cs.rmit.edu.au; David Ring, Palo Alto; email: [email protected]. Permission to make digital or hard copies of part or all of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or direct commercial advantage and that copies show this notice on the first page or initial screen of a display along with the full citation. Copyrights for components of this work owned by others than ACM must be honored. Abstracting with credit is permitted. To copy otherwise, to republish, to post on servers, to redistribute to lists, or to use any component of this work in other works requires prior specific permission and/or a fee. Permissions may be requested from Publications Dept., ACM, Inc., 2 Penn Plaza, Suite 701, New York, NY 10121-0701 USA, fax +1 (212) 869-0481, or [email protected]. C 2006 ACM 1084-6654/2006/0001-ART1.2 $5.00 DOI 10.1145/1187436.1187439 http://doi.acm.org 10.1145/1187436.1187439 ACM Journal of Experimental Algorithmics, Vol. 11, Article No. 1.2, 2006, Pages 1–32. 2 • R. Sinha et al. (making them expensive to move or compare) or variable in length (making them harder to rearrange). Finally, sorts that operate on multifield records raise the issue of stability, that is, conservation of previous order when keys are equal in the field currently being sorted. The favored sorting algorithms are those that use minimal memory, remain fast at large collection sizes, and efficiently handle a wide range of data properties and arrangements without pathological behavior. Several algorithms for fast sorting of strings in internal memory have been described in recent years, including improvements to the standard quicksort [Bentley and McIlroy 1993], multikey quicksort [Bentley and Sedgewick 1997], and variants of radix sort [Andersson and Nilsson 1998]. The fastest such algo- rithm is our burstsort [Sinha and Zobel 2004a], in which strings are processed depth- rather than breadth-first and a complete trie of common prefixes is used to distribute strings among buckets. In all of these methods, the strings them- selves are left in place and only pointers are moved into sort order. This point- erized approach to string sorting has become a standard solution to the length and length variability of strings, as expressed by Andersson and Nilsson [1998]: to implement a string sorting algorithm efficiently we should not move the strings themselves but only pointers to them. In this way each string movement is guaranteed to take constant time. In this argument, moving the variable-length strings in the course of sorting is considered inefficient. Sorting uses an array of pointers to the strings, and, at the completion of sorting, only the pointers need to be in sort order. However, evolutionary developments in computer architecture mean that the efficiency of sorting strings via pointers needs to be reexamined. Use of pointers is efficient if they are smaller than strings and if the costs of accessing and copying strings and pointers are uniform, but the speed of memory access has fallen behind processor speeds and most computers now have significant memory latency. Each string access can potentially result in a cache miss; that is, if a collection is too large to fit in cache memory, the cost of out-of-cache references may dominate other factors, making it worthwhile to move even long strings in order to increase their spatial locality. It is the cost of accessing strings via pointers that gives burstsort (which uses no fewer instructions than other methods) a speed advantage. There has been much recent work on cache-efficient algorithms [LaMarca and Ladner 1999; Jimenez-Gonzalez et al. 2003; Rahman and Raman 2000, 2001; Wickremesinghe et al. 2002; Xiao et al. 2000], but little that applies to sorting of strings in internal memory. An exception is burstsort [Sinha and Zobel 2004a], which uses a dynamically allocated trie structure to divide large sets of strings into related subsets small enough to sort in cache. Like radix sorts and multikey quicksort, burstsort avoids whole string comparisons and processes keys one byte at a time. However, burstsort works on successive bytes of a single key until it is assigned to a bucket, while the other sorts must inspect the current byte of every key in a sublist before moving to the next byte. This difference greatly reduces the number of cache misses, since burstsort can consume multiple bytes of a key in one memory access, while the older sorts ACM Journal of Experimental Algorithmics, Vol. 11, Article No. 1.2, 2006. Cache-Efficient String Sorting Using Copying • 3 may require an access for each byte. Furthermore, burstsort ensures that final sorting will be fast by expanding buckets into new subtries before they exceed the number of keys that can be sorted within cache. In tests using a variety of large string collections, burstsort was twice as fast as the best previous string sorts, due largely to a lower rate of cache misses. On average, burstsort generated between two and three cache misses per key, one on key insertion and another during bucket sorting; the remaining fractional miss was associated with bursting, which requires accessing additional bytes of the keys, and varied with patterns in the data. There are two potential approaches to reducing cache misses because of string accesses. The first is to reduce the number of accesses to strings, which is the rationale for burstsort. The second approach is to store strings with similar prefixes together and then to sort these suffixes. By gathering similar strings into small sets, it is feasible to load the whole of each set into cache and thus sort efficiently. That is, if strings with similar prefixes could be kept together, then accesses to them will be cache efficient. Such an approach was found to work for integers in our adaptation of burstsort, where the variable-length suffix of an integer that had not been consumed by the trie is copied into the bucket [Sinha 2004]. In this paper, we explore the application of this approach to strings. The novel strategy we propose is to copy the strings into the buckets. That is, instead of inserting pointers to the keys into the burst trie buckets, we in- sert the unexamined suffixes of the keys. This eliminates any need to reaccess the original string on bucket sorting and by copying only the tails of the keys into a contiguous array, we make the most efficient use of limited cache space. Finally, with all prefix bytes reflected in the trie structure, and all suffix bytes transferred to buckets, we can free the original keys to save memory. Balancing these advantages, we can expect higher instruction counts reflecting the com- plications of moving variable length suffixes and increased copying costs when the suffixes are longer than pointers. There are several challenges, principally concerning memory usage and in- struction counts. How efficiently can strings be copied to the buckets? Are the advantages of spatial locality offset by additional instructions? Is the memory usage excessive? How will the bucket be managed, as the strings are of vari- able length? What is the node structure? Are there any auxiliary structures? Are there any characteristics of the collection, such as the average string length, that alter best-case parameters? We show that all of these challenges can be met. In our new string sort- ing algorithms based on copying, memory usage is reasonable—the additional space for the strings is partly offset by elimination of pointers—and cache ef- ficiency is high.
Recommended publications
  • An Efficient Evolutionary Algorithm for Solving Incrementally Structured
    An Efficient Evolutionary Algorithm for Solving Incrementally Structured Problems Jason Ansel Maciej Pacula Saman Amarasinghe Una-May O'Reilly MIT - CSAIL July 14, 2011 Jason Ansel (MIT) PetaBricks July 14, 2011 1 / 30 Our goal is to make programs run faster We use evolutionary algorithms to search for faster programs The PetaBricks language defines search spaces of algorithmic choices Who are we? I do research in programming languages (PL) and compilers The PetaBricks language is a collaboration between: A PL / compiler research group A evolutionary algorithms research group A applied mathematics research group Jason Ansel (MIT) PetaBricks July 14, 2011 2 / 30 The PetaBricks language defines search spaces of algorithmic choices Who are we? I do research in programming languages (PL) and compilers The PetaBricks language is a collaboration between: A PL / compiler research group A evolutionary algorithms research group A applied mathematics research group Our goal is to make programs run faster We use evolutionary algorithms to search for faster programs Jason Ansel (MIT) PetaBricks July 14, 2011 2 / 30 Who are we? I do research in programming languages (PL) and compilers The PetaBricks language is a collaboration between: A PL / compiler research group A evolutionary algorithms research group A applied mathematics research group Our goal is to make programs run faster We use evolutionary algorithms to search for faster programs The PetaBricks language defines search spaces of algorithmic choices Jason Ansel (MIT) PetaBricks July 14, 2011
    [Show full text]
  • Sorting Algorithm 1 Sorting Algorithm
    Sorting algorithm 1 Sorting algorithm In computer science, a sorting algorithm is an algorithm that puts elements of a list in a certain order. The most-used orders are numerical order and lexicographical order. Efficient sorting is important for optimizing the use of other algorithms (such as search and merge algorithms) that require sorted lists to work correctly; it is also often useful for canonicalizing data and for producing human-readable output. More formally, the output must satisfy two conditions: 1. The output is in nondecreasing order (each element is no smaller than the previous element according to the desired total order); 2. The output is a permutation, or reordering, of the input. Since the dawn of computing, the sorting problem has attracted a great deal of research, perhaps due to the complexity of solving it efficiently despite its simple, familiar statement. For example, bubble sort was analyzed as early as 1956.[1] Although many consider it a solved problem, useful new sorting algorithms are still being invented (for example, library sort was first published in 2004). Sorting algorithms are prevalent in introductory computer science classes, where the abundance of algorithms for the problem provides a gentle introduction to a variety of core algorithm concepts, such as big O notation, divide and conquer algorithms, data structures, randomized algorithms, best, worst and average case analysis, time-space tradeoffs, and lower bounds. Classification Sorting algorithms used in computer science are often classified by: • Computational complexity (worst, average and best behaviour) of element comparisons in terms of the size of the list . For typical sorting algorithms good behavior is and bad behavior is .
    [Show full text]
  • How to Sort out Your Life in O(N) Time
    How to sort out your life in O(n) time arel Číže @kaja47K funkcionaklne.cz I said, "Kiss me, you're beautiful - These are truly the last days" Godspeed You! Black Emperor, The Dead Flag Blues Everyone, deep in their hearts, is waiting for the end of the world to come. Haruki Murakami, 1Q84 ... Free lunch 1965 – 2022 Cramming More Components onto Integrated Circuits http://www.cs.utexas.edu/~fussell/courses/cs352h/papers/moore.pdf He pays his staff in junk. William S. Burroughs, Naked Lunch Sorting? quicksort and chill HS 1964 QS 1959 MS 1945 RS 1887 quicksort, mergesort, heapsort, radix sort, multi- way merge sort, samplesort, insertion sort, selection sort, library sort, counting sort, bucketsort, bitonic merge sort, Batcher odd-even sort, odd–even transposition sort, radix quick sort, radix merge sort*, burst sort binary search tree, B-tree, R-tree, VP tree, trie, log-structured merge tree, skip list, YOLO tree* vs. hashing Robin Hood hashing https://cs.uwaterloo.ca/research/tr/1986/CS-86-14.pdf xs.sorted.take(k) (take (sort xs) k) qsort(lotOfIntegers) It may be the wrong decision, but fuck it, it's mine. (Mark Z. Danielewski, House of Leaves) I tell you, my man, this is the American Dream in action! We’d be fools not to ride this strange torpedo all the way out to the end. (HST, FALILV) Linear time sorting? I owe the discovery of Uqbar to the conjunction of a mirror and an Encyclopedia. (Jorge Luis Borges, Tlön, Uqbar, Orbis Tertius) Sorting out graph processing https://github.com/frankmcsherry/blog/blob/master/posts/2015-08-15.md Radix Sort Revisited http://www.codercorner.com/RadixSortRevisited.htm Sketchy radix sort https://github.com/kaja47/sketches (thinking|drinking|WTF)* I know they accuse me of arrogance, and perhaps misanthropy, and perhaps of madness.
    [Show full text]
  • Sorting Algorithm 1 Sorting Algorithm
    Sorting algorithm 1 Sorting algorithm A sorting algorithm is an algorithm that puts elements of a list in a certain order. The most-used orders are numerical order and lexicographical order. Efficient sorting is important for optimizing the use of other algorithms (such as search and merge algorithms) which require input data to be in sorted lists; it is also often useful for canonicalizing data and for producing human-readable output. More formally, the output must satisfy two conditions: 1. The output is in nondecreasing order (each element is no smaller than the previous element according to the desired total order); 2. The output is a permutation (reordering) of the input. Since the dawn of computing, the sorting problem has attracted a great deal of research, perhaps due to the complexity of solving it efficiently despite its simple, familiar statement. For example, bubble sort was analyzed as early as 1956.[1] Although many consider it a solved problem, useful new sorting algorithms are still being invented (for example, library sort was first published in 2006). Sorting algorithms are prevalent in introductory computer science classes, where the abundance of algorithms for the problem provides a gentle introduction to a variety of core algorithm concepts, such as big O notation, divide and conquer algorithms, data structures, randomized algorithms, best, worst and average case analysis, time-space tradeoffs, and upper and lower bounds. Classification Sorting algorithms are often classified by: • Computational complexity (worst, average and best behavior) of element comparisons in terms of the size of the list (n). For typical serial sorting algorithms good behavior is O(n log n), with parallel sort in O(log2 n), and bad behavior is O(n2).
    [Show full text]
  • Sorting Using Bitonic Network with CUDA
    Sorting using BItonic netwoRk wIth CUDA Ranieri Baraglia Gabriele Capannini ISTI - CNR ISTI - CNR Via G. Moruzzi, 1 Via G. Moruzzi, 1 56124 Pisa, Italy 56124 Pisa, Italy [email protected] [email protected] Franco Maria Nardini Fabrizio Silvestri ISTI - CNR ISTI - CNR Via G. Moruzzi, 1 Via G. Moruzzi, 1 56124 Pisa, Italy 56124 Pisa, Italy [email protected] [email protected] ABSTRACT keep them up to date. Storage space must be used efficiently Novel \manycore" architectures, such as graphics processors, to store indexes, and documents. The indexing system must are high-parallel and high-performance shared-memory ar- process hundreds of gigabytes of data efficiently. Queries chitectures [7] born to solve specific problems such as the must be handled quickly, at a rate of hundreds to thousands graphical ones. Those architectures can be exploited to per second. All these services run on clusters of homoge- solve a wider range of problems by designing the related neous PCs. PCs in these clusters depends upon price, CPU algorithm for such architectures. We present a fast sorting speed, memory and disk size, heat output, and physical size algorithm implementing an efficient bitonic sorting network. [3]. Nowadays these characteristics can be find also in other This algorithm is highly suitable for information retrieval commodity hardware originally designed for specific graph- applications. Sorting is a fundamental and universal prob- ics computations. Many special processor architectures have lem in computer science. Even if sort has been extensively been proposed to exploit data parallelism for data intensive addressed by many research works, it still remains an inter- computations and graphics processors (GPUs) are one of esting challenge to make it faster by exploiting novel tech- those.
    [Show full text]
  • Engineering Burstsort: Toward Fast In-Place String Sorting
    Engineering Burstsort: Toward Fast In-Place String Sorting RANJAN SINHA and ANTHONY WIRTH The University of Melbourne Burstsort is a trie-based string sorting algorithm that distributes strings into small buckets whose contents are then sorted in cache. This approach has earlier been demonstrated to be efficient on modern cache-based processors [Sinha & Zobel, JEA 2004]. In this article, we introduce improve- ments that reduce by a significant margin the memory requirement of Burstsort: It is now less than 1% greater than an in-place algorithm. These techniques can be applied to existing variants of Burstsort, as well as other string algorithms such as for string management. We redesigned the buckets, introducing sub-buckets and an index structure for them, which resulted in an order-of-magnitude space reduction. We also show the practicality of moving some fields from the trie nodes to the insertion point (for the next string pointer) in the bucket; this technique reduces memory usage of the trie nodes by one-third. Importantly, the trade-off for the reduction in memory use is only a very slight increase in the running time of Burstsort on real- world string collections. In addition, during the bucket-sorting phase, the string suffixes are copied to a small buffer to improve their spatial locality, lowering the running time of Burstsort by up to 30%. These memory usage enhancements have enabled the copy-based approach [Sinha et al., JEA 2006] to also reduce the memory usage with negligible impact on speed. 2.5 Categories and Subject Descriptors: E.1 [Data Structures]; E.5 [Files]: Sorting/Searching General Terms: Algorithms, Design, Experimentation, Performance Additional Key Words and Phrases: Sorting, algorithms, cache, experimental algorithms, string management, tries ACM Reference Format: Sinha, R.
    [Show full text]
  • Sorting Using Bitonic Network with CUDA
    Sorting using BItonic netwoRk wIth CUDA Ranieri Baraglia Gabriele Capannini ISTI - CNR ISTI - CNR Via G. Moruzzi, 1 Via G. Moruzzi, 1 56124 Pisa, Italy 56124 Pisa, Italy [email protected] [email protected] Franco Maria Nardini Fabrizio Silvestri ISTI - CNR ISTI - CNR Via G. Moruzzi, 1 Via G. Moruzzi, 1 56124 Pisa, Italy 56124 Pisa, Italy [email protected] [email protected] ABSTRACT keep them up to date. Storage space must be used efficiently Novel “manycore” architectures, such as graphics processors, to store indexes, and documents. The indexing system must are high-parallel and high-performance shared-memory ar- process hundreds of gigabytes of data efficiently. Queries chitectures [7] born to solve specific problems such as the must be handled quickly, at a rate of hundreds to thousands graphical ones. Those architectures can be exploited to per second. All these services run on clusters of homoge- solve a wider range of problems by designing the related neous PCs. PCs in these clusters depends upon price, CPU algorithm for such architectures. We present a fast sorting speed, memory and disk size, heat output, and physical size algorithm implementing an efficient bitonic sorting network. [3]. Nowadays these characteristics can be find also in other This algorithm is highly suitable for information retrieval commodity hardware originally designed for specific graph- applications. Sorting is a fundamental and universal prob- ics computations. Many special processor architectures have lem in computer science. Even if sort has been extensively been proposed to exploit data parallelism for data intensive addressed by many research works, it still remains an inter- computations and graphics processors (GPUs) are one of esting challenge to make it faster by exploiting novel tech- those.
    [Show full text]
  • In Search of the Fastest Sorting Algorithm
    In Search of the Fastest Sorting Algorithm Emmanuel Attard Cassar [email protected] Abstract: This paper explores in a chronological way the concepts, structures, and algorithms that programmers and computer scientists have tried out in their attempt to produce and improve the process of sorting. The measure of ‘fastness’ in this paper is mainly given in terms of the Big O notation. Keywords: sorting, algorithms orting is an extremely useful procedure in our information-laden society. Robert Sedgewick and Kevin Wayne have this to say: ‘In Sthe early days of computing, the common wisdom was that up to 30 per cent of all computing cycles was spent sorting. If that fraction is lower today, one likely reason is that sorting algorithms are relatively efficient, not that sorting has diminished in relative importance.’1 Many computer scientists consider sorting to be the most fundamental problem in the study of algorithms.2 In the literature, sorting is mentioned as far back as the seventh century BCE where the king of Assyria sorted clay tablets for the royal library according to their shape.3 1 R. Sedgewick, K. Wayne, Algorithms, 4th edn. (USA, 2011), Kindle Edition, Locations 4890-4892. 2 T.H. Cormen, C.E. Leiserson, R.L. Rivest, C. Stein, Introduction to Algorithms, 3rd edn. (USA, 2009), 148. 3 N. Akhter, M. Idrees, Furqan-ur-Rehman, ‘Sorting Algorithms – A Comparative Study’, International Journal of Computer Science and Information Security, Vol. 14, No. 12, (2016), 930. Symposia Melitensia Number 14 (2018) SYMPOSIA MELITENSIA NUMBER 14 (2018) Premise My considerations will be limited to algorithms on the standard von Neumann computer.
    [Show full text]
  • Efficient Trie-Based Sorting of Large Sets of Strings
    Efficient Trie-Based Sorting of Large Sets of Strings Ranjan Sinha Justin Zobel School of Computer Science and Information Technology RMIT University, GPO Box 2476V, Melbourne 3001, Australia frsinha,[email protected] Abstract purpose methods (Bentley & Sedgewick 1998). Many of these methods are adaptations of radixsort. In Sorting is a fundamental algorithmic task. Many general- radixsorts, the items to be sorted are treated as se- purpose sorting algorithms have been developed, but efficiency quences of symbols drawn from a finite alphabet, and gains can be achieved by designing algorithms for specific kinds each symbol is represented in a fixed number of bits. of data, such as strings. In previous work we have shown that Traditional radixsort proceeds by assuming the items our burstsort, a trie-based algorithm for sorting strings, is for to consist of a fixed number of symbols and ordering large data sets more efficient than all previous algorithms for the items on the rightmost or least significant sym- this task. In this paper we re-evaluate some of the implemen- bol, then the next rightmost symbol, and so on. Thus tation details of burstsort, in particular the method for man- the final stage is to sort on the most significant sym- aging buckets held at leaves. We show that better choice of bol. However, such right-to-left approaches are not data structures further improves the efficiency, at a small ad- well-suited to variable-length strings. ditional cost in memory. For sets of around 30,000,000 strings, The newer radixsort algorithms are left-to-right or our improved burstsort is nearly twice as fast as the previous MSD (most significant digit first), commencing at the best sorting algorithm.
    [Show full text]
  • Using Random Sampling to Build Approximate Tries for Efficient
    Using Random Sampling to Build Approximate Tries for Efficient String Sorting Ranjan Sinha and Justin Zobel School of Computer Science and Information Technology, RMIT University, Melbourne 3001, Australia. {rsinha,jz}@cs.rmit.edu.au Abstract. Algorithms for sorting large datasets can be made more effi- cient with careful use of memory hierarchies and reduction in the number of costly memory accesses. In earlier work, we introduced burstsort, a new string sorting algorithm that on large sets of strings is almost twice as fast as previous algorithms, primarily because it is more cache-efficient. The approach in burstsort is to dynamically build a small trie that is used to rapidly allocate each string to a bucket. In this paper, we in- troduce new variants of our algorithm: SR-burstsort, DR-burstsort, and DRL-burstsort. These algorithms use a random sample of the strings to construct an approximation to the trie prior to sorting. Our experimen- tal results with sets of over 30 million strings show that the new vari- ants reduce cache misses further than did the original burstsort, by up to 37%, while simultaneously reducing instruction counts by up to 24%. In pathological cases, even further savings can be obtained. 1 Introduction In-memory sorting is a basic problem in computer science. However, sorting algorithms face new challenges due to changes in computer architecture. Proces- sor speeds have been increasing at 60% per year, while speed of access to main memory has been increasing at only 7% per year, a growing processor-memory performance gap that appears likely to continue.
    [Show full text]
  • LSDS-IR'09 7Th Workshop on Large-Scale Distributed Systems For
    Claudio Lucchese Gleb Skobeltsyn Wai Gen Yee (Eds.) LSDS-IR’09 7th Workshop on Large-Scale Distributed Systems for Information Retrieval Workshop co-located with ACM SIGIR 2009 Boston, MA, USA, July 23, 2009 Proceedings Copyright c 2009 for the individual papers by the papers’ authors. Copying permitted for private and academic purposes. Re-publication of material from this volume requires permission by the copyright owners. Editors’ addresses: Claudio Lucchese Gleb Skobeltsyn Wai Gen Yee Istituto di Scienza e Tecnologie dell’Informazione Google Inc. Department of Computer Science Consiglio Nazionale delle Ricerche Illinois Institute of Technology Area della Ricerca di Pisa Via G. Moruzzi, 1 Brandschenkestrasse 110 10 W. 31st Street 56124 Pisa (PI) 8002 Zurich Chicago, IL 60616 Italy Switzerland USA [email protected] [email protected] [email protected] 7th Workshop on Large-Scale Distributed Systems for Information Retrieval (LSDS-IR’09) Preface The Web is continuously growing. Currently, it contains more than 20 billion pages (some sources suggest more than 100 billion), compared with fewer than 1 billion in 1998. Traditionally, Web-scale search engines employ large and highly replicated systems, operating on computer clusters in one or few data centers. Coping with the increasing number of user requests and indexable pages requires adding more resources. However, data centers cannot grow indefinitely. Scalability problems in Information Retrieval (IR) have to be addressed in the near future, and new distributed applications are likely to drive the way in which people use the Web. Distributed IR is the point in which these two directions converge. The 7th Large-Scale Distributed Systems Workshop (LSDS-IR’09), co-located with the 2009 ACM SIGIR Conference, provides a space for researchers to discuss these problems and to define new research directions in the area.
    [Show full text]
  • Performance Improvement for Multi-Key Quick Sort Using Kepler Gpus
    Performance Improvement for Multi-Key Quick Sort using Kepler GPUs Bharath Shamasundar, Amoolya Shetty Ananya Rao, Supreetha Shetty, Neelima Bayyapu Department of Computer Science and Engineering Department of Computer Science and Engineering NMAM Institute of Technology NMAM Institute of Technology Udupi, India Udupi, India {bharathbs294, amushetty93}@gmail.com {ananyaraoj, supreethashetty8}@gmail.com; [email protected] Abstract — This paper presents the performance programmers making it easily programmable. One improvement obtained by multi key quick sort on such programming API that has been introduced Kepler NVIDIA GPUs. Since Multi key quick sort by NVidia for parallel computing using GPUs is is a recursion based algorithm many of the the Compute Unified Device Architecture researchers have found it laborious to parallelize (CUDA) [2-3]. the algorithm on the multi and many core With every new version of the GPU architectures. A survey of imperative string sorting architecture, there is an increased possibility of algorithm and a robust perceptivity of the Kepler applications that can take advantage of this GPU architecture gave rise to an intriguing improvement. A sorting algorithm, based on rumination of matching the template of Multi key recursion that was previously considered quick sort with the dynamic parallelism feature offered by the Kepler based GPU’s. The CPU incapable of being parallelized in terms of parallel implementation of parallel multi key quick GPGPU is now ported onto the latest GPU sort gives 33 to 50 percentage of improvement and architecture that supports the framework of the 62 to 75 percentage of improvement when sorting algorithm is considered in this paper. compared to 8-bit and 16-bit parallel MSD radix Some research studies have provided a sort respectively.
    [Show full text]