-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
Pitch
Currently, we use PreservePreprocess and RemovePreprocess pass to filter and split a given IRModule by tag preprocessing, however, format decomposition does not always produce preprocess blocks, some of them are post-processing blocks (e.g. when we transform the format of the output matrix. We should design a more general module split pass.
Proposed Solution
mod_preprocess, mod_compute = tir.transform.SplitModuleByTag("preprocess")(mod)
mod_compute, mod_postprocess = tir.transform.SplitModuleByTag("postprocess", reverse=True)(mod)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
TODO