You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# FastFlow Python API
2
2
3
-
Unlock the full potential of parallel computing in **Python** with FastFlow, a powerful C++ library now available in Python, that brings **high-performance, scalable parallelism right to your fingertips**.
3
+
Unlock the full potential of parallel computing in **Python** with [FastFlow](https://github.com/fastflow/fastflow), a powerful C++ library now available in Python, that brings **high-performance, scalable parallelism right to your fingertips**.
4
4
5
5
- 🤩 Implement advanced parallel patterns and building blocks, like pipelines, farms, and all-to-all, with ease.
6
6
- 🚀🚀 Experience lightning-fast parallel execution with zero boilerplate code.
@@ -26,7 +26,7 @@ Whether you’re processing massive datasets, building scalable applications, or
26
26
27
27
## Installation
28
28
29
-
To install **fastflow**, ensure you have the following dependencies: `python3`, `python3-venv` and `python3-dev`. For example on Ubuntu you can install them using `apt install`.
29
+
To install **fastflow**, ensure you have the following dependencies: `python3`, `python3-venv` and `python3-dev`. For example on Ubuntu you can install them using `apt install`. Ensure you have updated submodules by running `git submodule init && git submodule update`.
30
30
31
31
1. From the root directory, create virtual environment via `python3 -m venv .venv`
32
32
2. From the root directory, activate the virtual environment by running `source .venv/bin/activate`
@@ -485,6 +485,10 @@ pipeline.add_stage(sink())
485
485
pipeline.run_and_wait_end()
486
486
```
487
487
488
+
## Test CI locally
489
+
490
+
To test the CI locally (optional), useful to test changes before actually change the whole ci, `pip install cibuildwheel` and then run `cibuildwheel --platform linux` or `make ci`.
491
+
488
492
## Contributing
489
493
490
494
Contributions are welcome! Please submit pull requests or open issues to help improve this project.
description = "Unlock the full potential of parallel computing in Python with FastFlow, a powerful C++ library now available in Python, that brings high-performance, scalable parallelism right to your fingertips."
0 commit comments