8000 Initial version of ConcurrentDict container via TBB hashmap (#972) · IntelPython/sdc@1574682 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 1574682

Browse files
Initial version of ConcurrentDict container via TBB hashmap (#972)
* Initial version of ConcurrentDict container via TBB hashmap Motivation: SDC relies on typed.Dict implementation in many core pandas algorithms, and it doesn't support concurrent read/writes. To fill this gap we add ConcurrentDict type which will be used if threading layer is TBB. * Fixing PEP and updating failing import * Fixing builds, warnings and complying to C++11 syntax * Fixing PEP and review comments #1 * Fixing remarks #2 * Applying remarks #3
1 parent 5ea7a17 commit 1574682

File tree

8 files changed

+3543
-1
lines changed

8 files changed

+3543
-1
lines changed

sdc/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
import sdc.extensions.indexes.range_index_ext
5151
import sdc.extensions.indexes.int64_index_ext
5252

53+
import sdc.extensions.sdc_hashmap_ext
54+
5355
from ._version import get_versions
5456

5557
"""

0 commit comments

Comments
 (0)
0