pipefunc: function composition magic for Pythonยถ

Lightweight function pipeline creation: ๐Ÿ“š Less Bookkeeping, ๐ŸŽฏ More Doing

Python PyPi Code style: black pytest Conda Coverage Documentation Downloads GitHub

๐Ÿค” What is this?ยถ

pipefunc is a Python library for creating and running function pipelines. By annotating functions and specifying their outputs, it forms a pipeline that automatically organizes the execution order to satisfy dependencies. Just specify the names of the outputs you want to compute, and pipefunc will handle the rest by leveraging the parameter names of the annotated functions.

Whether youโ€™re working with data processing, scientific computations, machine learning (AI) workflows, or any other scenario involving interdependent functions, pipefunc helps you focus on the logic of your code while it handles the intricacies of function dependencies and execution order.

๐Ÿš€ Key Featuresยถ

  1. ๐Ÿš€ Function Composition and Pipelining: Create pipelines by using the @pipefunc decorator; execution order is automatically handled.

  2. ๐Ÿ“Š Pipeline Visualization: Generate visual graphs of your pipelines to better understand the flow of data.

  3. ๐Ÿ‘ฅ Multiple Outputs: Handle functions that return multiple results, allowing each result to be used as input to other functions.

  4. ๐Ÿ” Map-Reduce Support: Perform โ€œmapโ€ operations to apply functions over data and โ€œreduceโ€ operations to aggregate results, allowing n-dimensional mappings.

  5. โžก๏ธ Pipeline Simplification: Merge nodes in complex pipelines to improve computational efficiency, trading off visibility into intermediate steps.

  6. ๐ŸŽ›๏ธ Resource Usage Profiling: Get reports on CPU usage, memory consumption, and execution time to identify bottlenecks and optimize your code.

  7. ๐Ÿ”„ Parallel Execution and Caching: Run functions in parallel and cache results to avoid redundant computations.

  8. ๐Ÿ” Parameter Sweep Utilities: Generate parameter combinations for parameter sweeps and optimize the sweeps with result caching.

  9. ๐Ÿ’ก Flexible Function Arguments: Call functions with different argument combinations, letting pipefunc determine which other functions to call based on the provided arguments.

  10. ๐Ÿ—๏ธ Leverages giants: Builds on top of NetworkX for graph algorithms and NumPy for n-dimensional arrays.

๐Ÿงช How does it work?ยถ

pipefunc provides a Pipeline class that you use to define your function pipeline. You add functions to the pipeline using the pipefunc decorator, which also lets you specify the functionโ€™s output name. Once your pipeline is defined, you can execute it for specific output values, simplify it by combining function nodes, visualize it as a directed graph, and profile the resource usage of the pipeline functions. For more detailed usage instructions and examples, please check the usage example provided in the package.

Here is a simple example usage of pipefunc to illustrate its primary features:

from pipefunc import pipefunc, Pipeline

# Define three functions that will be a part of the pipeline
@pipefunc(output_name="c")
def f_c(a, b):
    return a + b

@pipefunc(output_name="d")
def f_d(b, c):
    return b * c

@pipefunc(output_name="e")
def f_e(c, d, x=1):
    return c * d * x

# Create a pipeline with these functions
pipeline = Pipeline([f_c, f_d, f_e], profile=True)  # `profile=True` enables resource profiling

# Call the pipeline directly for different outputs:
assert pipeline("d", a=2, b=3) == 15
assert pipeline("e", a=2, b=3, x=1) == 75

# Or create a new function for a specific output
h_d = pipeline.func("d")
assert h_d(a=2, b=3) == 15

h_e = pipeline.func("e")
assert h_e(a=2, b=3, x=1) == 75
# Instead of providing the root arguments, you can also provide the intermediate results directly
assert h_e(c=5, d=15, x=1) == 75

# Visualize the pipeline
pipeline.visualize()

# Get all possible argument mappings for each function
all_args = pipeline.all_arg_combinations
print(all_args)

# Show resource reporting (only works if profile=True)
pipeline.resources_report()

This example demonstrates defining a pipeline with f_c, f_d, f_e functions, accessing and executing these functions using the pipeline, visualizing the pipeline graph, getting all possible argument mappings, and reporting on the resource usage. This basic example should give you an idea of how to use pipefunc to construct and manage function pipelines.

The following example demonstrates how to perform a map-reduce operation using pipefunc:

from pipefunc import pipefunc, Pipeline
from pipefunc.map import load_outputs
import numpy as np

@pipefunc(output_name="c", mapspec="a[i], b[j] -> c[i, j]")  # the mapspec is used to specify the mapping
def f(a: int, b: int):
    return a + b

@pipefunc(output_name="mean")  # there is no mapspec, so this function takes the full 2D array
def g(c: np.ndarray):
    return np.mean(c)

pipeline = Pipeline([f, g])
inputs = {"a": [1, 2, 3], "b": [4, 5, 6]}
pipeline.map(inputs, run_folder="my_run_folder", parallel=True)
result = load_outputs("mean", run_folder="my_run_folder")
print(result)  # prints 7.0

Here the mapspec argument is used to specify the mapping between the inputs and outputs of the f function, it creates the product of the a and b input lists and computes the sum of each pair. The g function then computes the mean of the resulting 2D array. The map method executes the pipeline for the inputs, and the load_outputs function is used to load the results of the g function from the specified run folder.

๐Ÿ““ Jupyter Notebook Exampleยถ

See the detailed usage example and more in our example.ipynb.

๐Ÿ’ป Installationยถ

Install the latest stable version from conda (recommended):

conda install pipefunc

or from PyPI:

pip install "pipefunc[plotting]"

or install main with:

pip install -U https://github.com/basnijholt/pipefunc/archive/main.zip

or clone the repository and do a dev install (recommended for dev):

git clone git@github.com:basnijholt/pipefunc.git
cd pipefunc
pip install -e ".[dev,test,plotting]"

๐Ÿ› ๏ธ Developmentยถ

We use pre-commit to manage pre-commit hooks, which helps us ensure that our code is always clean and compliant with our coding standards. To set it up, install pre-commit with pip and then run the install command:

pip install pre-commit
pre-commit install