https://github.com/ashutoshvarma/numba_cython_mkl_oversubscription_bug
See https://github.com/numba/numba/issues/6637
https://github.com/ashutoshvarma/numba_cython_mkl_oversubscription_bug
Last synced: 3 months ago
JSON representation
See https://github.com/numba/numba/issues/6637
- Host: GitHub
- URL: https://github.com/ashutoshvarma/numba_cython_mkl_oversubscription_bug
- Owner: ashutoshvarma
- Created: 2021-01-14T10:47:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T05:47:01.000Z (over 1 year ago)
- Last Synced: 2024-12-28T00:42:50.811Z (5 months ago)
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Setup Environment
- ## Install deps
```
conda install numpy numba cython ipython
```- ## Build cython extension
```
cythonize -i *pyx
```## Run test.py
- ### numba first then cython
```
./check_thread ipython test.py
```
- ### cython first then numba
```
./check_thread ipython test.py cython-first
```