Beaver.Composer (beaver v0.4.2)
This module provide functions to compose and run passes.
Summary
Functions
Run the passes on the operation.
Types
Functions
@spec run(composer(), [run_option()]) :: run_result()
Run the passes on the operation.
Must be a multi-threaded context if an Elixir pass is in the pipeline
MLIR context's thread pool is used to run the CAPI. If an Elixir pass is in the pipeline, the context must be multi-threaded otherwise there can be a deadlock. Also note that it can be more expensive than a C/C++ implementation due to the overhead of the thread pool.
@spec run!(composer(), [run_option()]) :: operation()