We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f524072 commit 085172dCopy full SHA for 085172d
compiler/src/iree/compiler/GlobalOptimization/Passes.cpp
@@ -116,7 +116,9 @@ void buildGlobalOptimizationPassPipeline(
116
117
// Enable data tiling after they are in a canonical form.
118
if (transformOptions.options.dataTiling) {
119
- mainPassManager.addPass(createLiftGenericToTransposeBatchMatmulPass());
+ if (!clEnableQuantizedMatmulReassociation) {
120
+ mainPassManager.addPass(createLiftGenericToTransposeBatchMatmulPass());
121
+ }
122
// Expand all vectors in vecmat/matvec ops into matrices for tiling.
123
if (clEnableExpandVectors) {
124
mainPassManager.addPass(createExpandVectorsPass());
0 commit comments