A minimal implementation of an intermediate representation
Project description
minir
A minimal implementation of an intermediate representation with MLIR-like rewrite patterns
Features
- IR Representation: Define operations, values (scalars, vectors, tensors), and functions
- Op Rewrite Patterns: MLIR-inspired pattern matching and rewriting system for IR transformations
- ONNX Support: Convert between ONNX and minir IR
- TOSA Support: TOSA (Tensor Operator Set Architecture) writer support
Op Rewrite Patterns
minir includes a powerful rewrite pattern system inspired by MLIR's pattern rewriting infrastructure. This allows you to define transformation patterns that can match and rewrite operations in your IR.
Basic Usage
from minir.ir import Operation, Tensor, Function
from minir.rewrite import (
OpRewritePattern,
RewritePatternSet,
PatternRewriter,
GreedyPatternRewriter,
)
# Define a custom pattern
class MyOptimizationPattern(OpRewritePattern):
def match(self, op: Operation) -> bool:
# Return True if this operation should be rewritten
return op.name == "my_op" and some_condition(op)
def rewrite(self, op: Operation, rewriter: PatternRewriter) -> bool:
# Perform the rewrite
rewriter.replace_op_with_value(op, op.operands[0])
return True
# Create a function with operations
operations = [
Operation("my_op", [input_tensor], [output_tensor]),
Operation("func.return", [output_tensor]),
]
function = Function(operations, name="my_function")
# Apply the pattern
patterns = RewritePatternSet()
patterns.add_pattern(MyOptimizationPattern())
changed = GreedyPatternRewriter.apply_patterns_and_fold_greedily(function, patterns)
Built-in Patterns
- DeadCodeEliminationPattern: Removes operations whose results are never used
- IdentityEliminationPattern: Eliminates identity operations that just pass through their input
- ChainedIdentityPattern: Collapses chains of identity operations
- CommonSubexpressionEliminationPattern: Eliminates redundant computations (CSE)
- CSEPass: Dedicated Common Subexpression Elimination pass for efficient optimization
- ConstantFoldingPattern: Base class for constant folding transformations
- AttributeBasedPattern: Pattern matching based on operation attributes
Pattern Features
- Pattern Benefits: Assign priority scores to patterns for controlled application order
- Greedy Rewriting: Apply patterns iteratively until convergence
- Value Replacement: Track and apply value substitutions throughout the IR
- Operation Management: Insert, replace, and remove operations with automatic metadata updates
Example: Dead Code Elimination
from minir.rewrite import DeadCodeEliminationPattern
patterns = RewritePatternSet()
patterns.add_pattern(DeadCodeEliminationPattern())
# Automatically removes unused operations
GreedyPatternRewriter.apply_patterns_and_fold_greedily(function, patterns)
Example: Common Subexpression Elimination
from minir.rewrite import CSEPass
# Create a function with redundant computations
operations = [
Operation("add", [a, b], [add1_out]),
Operation("mul", [add1_out, c], [mul1_out]),
Operation("add", [a, b], [add2_out]), # Duplicate computation
Operation("mul", [add2_out, c], [mul2_out]), # Duplicate computation
Operation("func.return", [mul1_out, mul2_out]),
]
function = Function(operations, name="test_cse")
# Run CSE to eliminate redundant computations
changed = CSEPass.run(function)
# After CSE: both add2_out and mul2_out are replaced with add1_out and mul1_out
Example: Custom Attribute-Based Pattern
class RemoveIdentityScalePattern(OpRewritePattern):
"""Remove scale operations with scale factor of 1.0."""
def match(self, op: Operation) -> bool:
return (op.name == "scale" and
op.attributes.get("factor") == 1.0)
def rewrite(self, op: Operation, rewriter: PatternRewriter) -> bool:
# Scale by 1.0 is identity, replace with input
rewriter.replace_op_with_value(op, op.operands[0])
return True
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file minir-0.1.9-py3-none-any.whl.
File metadata
- Download URL: minir-0.1.9-py3-none-any.whl
- Upload date:
- Size: 24.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee192782fd816e78155fdb9bfcc7d535a294db9a5cd68a9abab2e7a90ca525e1
|
|
| MD5 |
eef895fb52c8114e7d5522c14e98324d
|
|
| BLAKE2b-256 |
0b2bca693c5c604096fdc987e82cfdcea056bba9fdb5e2386dab0e2e95a90c0c
|