Expand description
Operator fusion pass.
Fuses adjacent operations in the compute graph into single fused operations to reduce memory traffic and kernel launch overhead.
Supported fusion patterns:
- Conv2D + Bias + Activation โ
FusedConv2dwith activation attribute - MatMul + Bias (Add) โ
Gemm(with beta=1) - ElementWise + Activation โ
FusedElementWisewith activation
Structsยง
- Operator
Fusion - Fuses adjacent operations in the compute graph into single fused ops.