MLIR  19.0.0git
Namespaces | Macros | Functions
KernelOutlining.cpp File Reference
#include "mlir/Dialect/GPU/Transforms/Passes.h"
#include "mlir/AsmParser/AsmParser.h"
#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/ControlFlow/IR/ControlFlowOps.h"
#include "mlir/Dialect/DLTI/DLTI.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "mlir/Dialect/GPU/IR/GPUDialect.h"
#include "mlir/Dialect/GPU/Transforms/Utils.h"
#include "mlir/Dialect/MemRef/IR/MemRef.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/IR/IRMapping.h"
#include "mlir/IR/Matchers.h"
#include "mlir/IR/SymbolTable.h"
#include "mlir/Support/LLVM.h"
#include "mlir/Transforms/RegionUtils.h"
#include <limits>
#include "mlir/Dialect/GPU/Transforms/Passes.h.inc"

Go to the source code of this file.

Namespaces

 mlir
 Include the generated interface declarations.
 

Macros

#define GEN_PASS_DEF_GPULAUNCHSINKINDEXCOMPUTATIONS
 
#define GEN_PASS_DEF_GPUKERNELOUTLINING
 

Functions

template<typename OpTy >
static void createForAllDimensions (OpBuilder &builder, Location loc, SmallVectorImpl< Value > &values)
 
static void injectGpuIndexOperations (Location loc, Region &launchFuncOpBody, Region &launchOpBody, IRMapping &map, bool hasCluster=false)
 Adds operations generating block/thread ids and grid/block dimensions at the beginning of the launchFuncOpBody region. More...
 
static bool isLikelyAnIndexComputation (Operation *op)
 Identifies operations that are beneficial to sink into kernels. More...
 
static bool extractBeneficiaryOps (Operation *op, const SetVector< Value > &existingDependencies, SetVector< Operation * > &beneficiaryOps, llvm::SmallPtrSetImpl< Value > &availableValues, llvm::function_ref< bool(Operation *)> isSinkingBeneficiary)
 For a given operation op, computes whether it is beneficial to sink the operation into the kernel. More...
 
static DenseI32ArrayAttr maybeConstantDimsAttr (gpu::KernelDim3 dims)
 Return the provided KernelDim3 as an array of i32 constants if possible. More...
 
static gpu::GPUFuncOp outlineKernelFuncImpl (gpu::LaunchOp launchOp, StringRef kernelFnName, SetVector< Value > &operands)
 Outline the gpu.launch operation body into a kernel function. More...
 
static void convertToLaunchFuncOp (gpu::LaunchOp launchOp, gpu::GPUFuncOp kernelFunc, ValueRange operands)
 Replace gpu.launch operations with an gpu.launch_func operation launching kernelFunc. More...
 

Macro Definition Documentation

◆ GEN_PASS_DEF_GPUKERNELOUTLINING

#define GEN_PASS_DEF_GPUKERNELOUTLINING

Definition at line 34 of file KernelOutlining.cpp.

◆ GEN_PASS_DEF_GPULAUNCHSINKINDEXCOMPUTATIONS

#define GEN_PASS_DEF_GPULAUNCHSINKINDEXCOMPUTATIONS

Definition at line 33 of file KernelOutlining.cpp.

Function Documentation

◆ convertToLaunchFuncOp()

static void convertToLaunchFuncOp ( gpu::LaunchOp  launchOp,
gpu::GPUFuncOp  kernelFunc,
ValueRange  operands 
)
static

Replace gpu.launch operations with an gpu.launch_func operation launching kernelFunc.

The kernel func contains the body of the gpu.launch with constant region arguments inlined.

Definition at line 282 of file KernelOutlining.cpp.

References mlir::OpBuilder::create(), mlir::Value::getType(), and mlir::Operation::replaceAllUsesWith().

◆ createForAllDimensions()

template<typename OpTy >
static void createForAllDimensions ( OpBuilder builder,
Location  loc,
SmallVectorImpl< Value > &  values 
)
static

Definition at line 41 of file KernelOutlining.cpp.

References mlir::OpBuilder::create(), and mlir::Builder::getIndexType().

◆ extractBeneficiaryOps()

static bool extractBeneficiaryOps ( Operation op,
const SetVector< Value > &  existingDependencies,
SetVector< Operation * > &  beneficiaryOps,
llvm::SmallPtrSetImpl< Value > &  availableValues,
llvm::function_ref< bool(Operation *)>  isSinkingBeneficiary 
)
static

For a given operation op, computes whether it is beneficial to sink the operation into the kernel.

An operation can be sunk if doing so does not introduce new kernel arguments. Whether a value is already available in the kernel (and hence does not introduce new arguments) is checked by querying existingDependencies and availableValues. If an operand is not yet available, we recursively check whether it can be made available by siking its defining op. Operations that are indentified for sinking are added to beneficiaryOps in the order they should appear in the kernel. Furthermore, availableValues is updated with results that will be available after sinking the identified ops.

Definition at line 92 of file KernelOutlining.cpp.

Referenced by mlir::sinkOperationsIntoLaunchOp().

◆ injectGpuIndexOperations()

static void injectGpuIndexOperations ( Location  loc,
Region launchFuncOpBody,
Region launchOpBody,
IRMapping map,
bool  hasCluster = false 
)
static

Adds operations generating block/thread ids and grid/block dimensions at the beginning of the launchFuncOpBody region.

Add mapping from argument in entry block of launchOpBody, to the corresponding result value of the added operations.

Definition at line 51 of file KernelOutlining.cpp.

References mlir::detail::enumerate(), mlir::Region::front(), mlir::Block::getArgument(), mlir::Attribute::getContext(), mlir::IRMapping::map(), and mlir::OpBuilder::setInsertionPointToStart().

Referenced by outlineKernelFuncImpl().

◆ isLikelyAnIndexComputation()

static bool isLikelyAnIndexComputation ( Operation op)
static

Identifies operations that are beneficial to sink into kernels.

These operations may not have side-effects, as otherwise sinking (and hence duplicating them) is not legal.

Definition at line 76 of file KernelOutlining.cpp.

◆ maybeConstantDimsAttr()

static DenseI32ArrayAttr maybeConstantDimsAttr ( gpu::KernelDim3  dims)
static

◆ outlineKernelFuncImpl()

static gpu::GPUFuncOp outlineKernelFuncImpl ( gpu::LaunchOp  launchOp,
StringRef  kernelFnName,
SetVector< Value > &  operands 
)
static