[all-commits] [llvm/llvm-project] 8482b2: [ADT] add ConcurrentHashtable class.
avl-llvm via All-commits
all-commits at lists.llvm.org
Thu Mar 23 06:35:26 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 8482b238062ed7263facea9490f67119e00a037a
https://github.com/llvm/llvm-project/commit/8482b238062ed7263facea9490f67119e00a037a
Author: Alexey Lapshin <a.v.lapshin at mail.ru>
Date: 2023-03-23 (Thu, 23 Mar 2023)
Changed paths:
A llvm/include/llvm/ADT/ConcurrentHashtable.h
M llvm/unittests/ADT/CMakeLists.txt
A llvm/unittests/ADT/ConcurrentHashtableTest.cpp
Log Message:
-----------
[ADT] add ConcurrentHashtable class.
ConcurrentHashTable - is a resizeable concurrent hashtable.
The range of resizings is limited up to x2^32. The hashtable allows only concurrent insertions.
Concurrent hashtable is necessary for the D96035 patch.
Reviewed By: JDevlieghere
Differential Revision: https://reviews.llvm.org/D132455
More information about the All-commits
mailing list