Add a pass option to control the number of nested parallel loops produced by the parallelization passes. This is useful to build end-to-end passes targeting systems that don't need multiple parallel dimensions (e.g., CPUs typically need only one). Reviewed By: wsmoses, chelini Differential Revision: https://reviews.llvm.org/D92765
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
//===- AffineParallelize.cpp - Affineparallelize Pass---------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements a parallelizer for affine loop nests that is able to
|
|
// perform inner or outer loop parallelization.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "PassDetail.h"
|
|
#include "mlir/Analysis/AffineStructures.h"
|
|
#include "mlir/Analysis/LoopAnalysis.h"
|
|
#include "mlir/Analysis/Utils.h"
|
|
#include "mlir/Dialect/Affine/IR/AffineOps.h"
|
|
#include "mlir/Dialect/Affine/IR/AffineValueMap.h"
|
|
#include "mlir/Dialect/Affine/Passes.h"
|
|
#include "mlir/Dialect/Affine/Passes.h.inc"
|
|
#include "mlir/Dialect/Affine/Utils.h"
|
|
#include "mlir/Transforms/LoopUtils.h"
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#define DEBUG_TYPE "affine-parallel"
|
|
|
|
using namespace mlir;
|
|
|
|
namespace {
|
|
/// Convert all parallel affine.for op into 1-D affine.parallel op.
|
|
struct AffineParallelize : public AffineParallelizeBase<AffineParallelize> {
|
|
void runOnFunction() override;
|
|
};
|
|
} // namespace
|
|
|
|
void AffineParallelize::runOnFunction() {
|
|
FuncOp f = getFunction();
|
|
|
|
// The walker proceeds in post-order, but we need to process outer loops first
|
|
// to control the number of outer parallel loops, so push candidate loops to
|
|
// the front of a deque.
|
|
std::deque<AffineForOp> parallelizableLoops;
|
|
f.walk([&](AffineForOp loop) {
|
|
if (isLoopParallel(loop))
|
|
parallelizableLoops.push_front(loop);
|
|
});
|
|
|
|
for (AffineForOp loop : parallelizableLoops) {
|
|
unsigned numParentParallelOps = 0;
|
|
for (Operation *op = loop->getParentOp();
|
|
op != nullptr && !op->hasTrait<OpTrait::AffineScope>();
|
|
op = op->getParentOp()) {
|
|
if (isa<AffineParallelOp>(op))
|
|
++numParentParallelOps;
|
|
}
|
|
|
|
if (numParentParallelOps < maxNested)
|
|
affineParallelize(loop);
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<OperationPass<FuncOp>> mlir::createAffineParallelizePass() {
|
|
return std::make_unique<AffineParallelize>();
|
|
}
|