File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/Dialect/TritonGPU/Transforms/WarpSpecialization Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ void AutomaticWarpSpecialization::runOnOperation() {
3535 OpPassManager pm;
3636 pm.addPass (createTritonGPULoadMMASpecialization ({numStages}));
3737 pm.addPass (createTritonGPURewritePartitionDependencies ());
38- // `int-range-optimizations` is good at cleaning up loop arithmetic involving
39- // circular buffers .
40- pm.addPass (arith::createIntRangeOptimizationsPass ());
38+ // `int-range-optimizations` and SCCP are good at cleaning up loop arithmetic.
39+ // FIXME: Re-enable integer range analysis once it is fixed .
40+ // pm.addPass(arith::createIntRangeOptimizationsPass());
4141 pm.addPass (createSCCPPass ());
4242 pm.addPass (createCSEPass ());
4343 pm.addPass (createTritonGPUPartitionLoops ());
You can’t perform that action at this time.
0 commit comments