Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quancs/parfor
https://github.com/quancs/parfor
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/quancs/parfor
- Owner: quancs
- License: apache-2.0
- Created: 2021-10-28T04:41:59.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T13:03:36.000Z (about 3 years ago)
- Last Synced: 2024-10-28T04:47:54.448Z (about 2 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parfor for python
```
from parfor import parfordef myfunc(worker_id, data, other_arg):
import time
time.sleep(0.1)
# print('wid=', worker_id, 'data=', data, other_arg)parfor(list(range(100)), myfunc, 3, other_arg=1)
```