中文
相关论文

相关论文: Lock-free dynamic hash tables with open addressing

200 篇论文

Concurrent hash tables are one of the most important concurrent data structures with numerous applications. Since hash table accesses can dominate the execution time of the overall application, we need implementations that achieve good…

数据结构与算法 · 计算机科学 2016-09-07 Tobias Maier , Peter Sanders , Roman Dementiev

In this paper we present a lock-free version of Hopscotch Hashing. Hopscotch Hashing is an open addressing algorithm originally proposed by Herlihy, Shavit, and Tzafrir, which is known for fast performance and excellent cache locality. The…

分布式、并行与集群计算 · 计算机科学 2019-11-11 Robert Kelly , Barak A. Pearlmutter , Phil Maguire

Lock-free concurrent algorithms guarantee that some concurrent operation will always make progress in a finite number of steps. Yet programmers prefer to treat concurrent code as if it were wait-free, guaranteeing that all operations always…

分布式、并行与集群计算 · 计算机科学 2013-11-18 Dan Alistarh , Keren Censor-Hillel , Nir Shavit

This paper presents an efficient wait-free resizable hash table. To achieve high throughput at large core counts, our algorithm is specifically designed to retain the natural parallelism of concurrent hashing, while providing wait-free…

分布式、并行与集群计算 · 计算机科学 2022-04-21 Panagiota Fatourou , Nikolaos D. Kallimanis , Thomas Ropars

A critical component in the implementation of a concurrent tabling system is the design of the table space. One of the most successful proposals for representing tables is based on a two-level trie data structure, where one trie level…

编程语言 · 计算机科学 2014-05-15 Miguel Areias , Ricardo Rocha

A history-independent data structure does not reveal the history of operations applied to it, only its current logical state, even if its internal state is examined. This paper studies history-independent concurrent dictionaries, in…

分布式、并行与集群计算 · 计算机科学 2025-03-28 Hagit Attiya , Michael A. Bender , Martín Farach-Colton , Rotem Oshman , Noa Schiller

Given a specified average load factor, hash tables offer the appeal of constant time lookup operations. However, hash tables could face severe hash collisions because of malicious attacks, buggy applications, or even bursts of incoming…

分布式、并行与集群计算 · 计算机科学 2020-06-02 Junchang Wang , Xiong Fu , Fu Xiao , Chen Tian

A hash table is said to be open-addressed (or non-obliviously open-addressed) if it stores elements (and free slots) in an array with no additional metadata. Intuitively, open-addressed hash tables must incur a space-time tradeoff: The…

数据结构与算法 · 计算机科学 2025-03-19 Michael A. Bender , William Kuszmaul , Renfei Zhou

This report describes an implementation of a non-blocking concurrent shared-memory hash trie based on single-word compare-and-swap instructions. Insert, lookup and remove operations modifying different parts of the hash trie can be run…

数据结构与算法 · 计算机科学 2017-09-19 Aleksandar Prokopec , Phil Bagwell , Martin Odersky

This paper considers the modeling and the analysis of the performance of lock-free concurrent data structures. Lock-free designs employ an optimistic conflict control mechanism, allowing several processes to access the shared data object at…

数据结构与算法 · 计算机科学 2015-08-17 Aras Atalar , Paul Renaud-Goud , Philippas Tsigas

This paper focuses on data structures for multi-core reachability, which is a key component in model checking algorithms and other verification methods. A cornerstone of an efficient solution is the storage of visited states. In related…

分布式、并行与集群计算 · 计算机科学 2010-05-06 Alfons Laarman , Jaco van de Pol , Michael Weber

Building a library of concurrent data structures is an essential way to simplify the difficult task of developing concurrent software. Lock-free data structures, in which processes can help one another to complete operations, offer the…

分布式、并行与集群计算 · 计算机科学 2017-12-18 Trevor Brown

In this paper, we give theoretically and practically efficient implementations of Big Atomics, i.e., $k$-word linearizable registers that support the load, store, and compare-and-swap (CAS) operations. While modern hardware supports $k = 1$…

分布式、并行与集群计算 · 计算机科学 2025-01-14 Daniel Anderson , Guy E. Blelloch , Siddhartha Jayanti

Non-volatile memory is expected to co-exist or replace DRAM in upcoming architectures. Durable concurrent data structures for non-volatile memories are essential building blocks for constructing adequate software for use with these…

分布式、并行与集群计算 · 计算机科学 2019-09-10 Yoav Zuriel , Michal Friedman , Gali Sheffi , Nachshon Cohen , Erez Petrank

A standard design pattern found in many concurrent data structures, such as hash tables or ordered containers, is alternation of parallelizable sections that incur no data conflicts and critical sections that must run sequentially and are…

分布式、并行与集群计算 · 计算机科学 2021-10-13 Vitaly Aksenov , Daniil Bolotov , Petr Kuznetsov

This paper presents a new and practical approach to lock-free locks based on helping, which allows the user to write code using fine-grained locks, but run it in a lock-free manner. Although lock-free locks have been suggested in the past,…

分布式、并行与集群计算 · 计算机科学 2022-02-01 Naama Ben-David , Guy E. Blelloch , Yuanhao Wei

A key part of implementing high-level languages is providing built-in and default data structures. Yet selecting good defaults is hard. A mutable data structure's workload is not known in advance, and it may shift over its lifetime - e.g.,…

编程语言 · 计算机科学 2017-08-09 Chao-Hong Chen , Vikraman Choudhury , Ryan R. Newton

We present an efficient and practical lock-free implementation of a concurrent deque that is disjoint-parallel accessible and uses atomic primitives which are available in modern computer systems. Previously known lock-free algorithms of…

分布式、并行与集群计算 · 计算机科学 2007-05-23 Håkan Sundell , Philippas Tsigas

Hash table is a fundamental data structure for quick search and retrieval of data. It is a key component in complex graph analytics and AI/ML applications. State-of-the-art parallel hash table implementations either make some simplifying…

分布式、并行与集群计算 · 计算机科学 2021-08-24 Ruizhi Zhang , Sasindu Wijeratne , Yang Yang , Sanmukh R. Kuppannagari , Viktor K. Prasanna

Byte-addressable persistent memory (PM) brings hash tables the potential of low latency, cheap persistence and instant recovery. The recent advent of Intel Optane DC Persistent Memory Modules (DCPMM) further accelerates this trend. Many new…

数据库 · 计算机科学 2020-10-30 Baotong Lu , Xiangpeng Hao , Tianzheng Wang , Eric Lo
‹ 上一页 1 2 3 10 下一页 ›