We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06eb55 commit 5618a1fCopy full SHA for 5618a1f
README.md
@@ -22,17 +22,17 @@ Numba’s function-level caching (`@jit(cache=True)`) is not concurrency-safe by
22
## Installation
23
24
```bash
25
-pip install numba-locking-cache
+pip install numba-lock-cache
26
```
27
28
## How to use it
29
30
Just import the patch Numba in your application:
31
32
```python
33
-import numba_locking_cache
+import numba_cache_lock
34
35
-numba_locking_cache.patch_numba_cache()
+numba_cache_lock.patch_numba_cache()
36
37
from numba import jit
38
src/numba_cache_lock/__init__.py
@@ -10,7 +10,7 @@
10
)
11
12
__all__ = [
13
- "monkey_patch_caching",
+ "patch_numba_cache",
14
]
15
16
0 commit comments