1a5f9cda1SChristian Sigg //===- ConvertLaunchFuncToGpuRuntimeCalls.cpp - MLIR GPU lowering passes --===// 2a5f9cda1SChristian Sigg // 3a5f9cda1SChristian Sigg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4a5f9cda1SChristian Sigg // See https://llvm.org/LICENSE.txt for license information. 5a5f9cda1SChristian Sigg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6a5f9cda1SChristian Sigg // 7a5f9cda1SChristian Sigg //===----------------------------------------------------------------------===// 8a5f9cda1SChristian Sigg // 9a5f9cda1SChristian Sigg // This file implements a pass to convert gpu.launch_func op into a sequence of 10a5f9cda1SChristian Sigg // GPU runtime calls. As most of GPU runtimes does not have a stable published 11a5f9cda1SChristian Sigg // ABI, this pass uses a slim runtime layer that builds on top of the public 12a5f9cda1SChristian Sigg // API from GPU runtime headers. 13a5f9cda1SChristian Sigg // 14a5f9cda1SChristian Sigg //===----------------------------------------------------------------------===// 15a5f9cda1SChristian Sigg 16a5f9cda1SChristian Sigg #include "mlir/Conversion/GPUCommon/GPUCommonPass.h" 17a5f9cda1SChristian Sigg 18a5f9cda1SChristian Sigg #include "../PassDetail.h" 19a5f9cda1SChristian Sigg #include "mlir/Conversion/AsyncToLLVM/AsyncToLLVM.h" 2075e5f0aaSAlex Zinenko #include "mlir/Conversion/LLVMCommon/ConversionTarget.h" 21684dfe8aSAlex Zinenko #include "mlir/Conversion/LLVMCommon/Pattern.h" 2275e5f0aaSAlex Zinenko #include "mlir/Conversion/MemRefToLLVM/MemRefToLLVM.h" 23a5f9cda1SChristian Sigg #include "mlir/Conversion/StandardToLLVM/ConvertStandardToLLVM.h" 24684dfe8aSAlex Zinenko #include "mlir/Conversion/StandardToLLVM/ConvertStandardToLLVMPass.h" 25a5f9cda1SChristian Sigg #include "mlir/Conversion/VectorToLLVM/ConvertVectorToLLVM.h" 26a5f9cda1SChristian Sigg #include "mlir/Dialect/Async/IR/Async.h" 27a5f9cda1SChristian Sigg #include "mlir/Dialect/GPU/GPUDialect.h" 28a5f9cda1SChristian Sigg #include "mlir/Dialect/GPU/Passes.h" 29a5f9cda1SChristian Sigg #include "mlir/Dialect/LLVMIR/LLVMDialect.h" 30a5f9cda1SChristian Sigg #include "mlir/IR/Attributes.h" 31a5f9cda1SChristian Sigg #include "mlir/IR/Builders.h" 32a5f9cda1SChristian Sigg #include "mlir/IR/BuiltinOps.h" 33a5f9cda1SChristian Sigg #include "mlir/IR/BuiltinTypes.h" 34a5f9cda1SChristian Sigg 35a5f9cda1SChristian Sigg #include "llvm/ADT/STLExtras.h" 36a5f9cda1SChristian Sigg #include "llvm/Support/Error.h" 37a5f9cda1SChristian Sigg #include "llvm/Support/FormatVariadic.h" 38a5f9cda1SChristian Sigg 39a5f9cda1SChristian Sigg using namespace mlir; 40a5f9cda1SChristian Sigg 41a5f9cda1SChristian Sigg static constexpr const char *kGpuBinaryStorageSuffix = "_gpubin_cst"; 42a5f9cda1SChristian Sigg 43a5f9cda1SChristian Sigg namespace { 44a5f9cda1SChristian Sigg 45a5f9cda1SChristian Sigg class GpuToLLVMConversionPass 46a5f9cda1SChristian Sigg : public GpuToLLVMConversionPassBase<GpuToLLVMConversionPass> { 47a5f9cda1SChristian Sigg public: 48a5f9cda1SChristian Sigg GpuToLLVMConversionPass() = default; 49a5f9cda1SChristian Sigg 50a5f9cda1SChristian Sigg GpuToLLVMConversionPass(const GpuToLLVMConversionPass &other) 51a5f9cda1SChristian Sigg : GpuToLLVMConversionPassBase(other) {} 52a5f9cda1SChristian Sigg 53a5f9cda1SChristian Sigg // Run the dialect converter on the module. 54a5f9cda1SChristian Sigg void runOnOperation() override; 55a5f9cda1SChristian Sigg 56a5f9cda1SChristian Sigg private: 57a5f9cda1SChristian Sigg Option<std::string> gpuBinaryAnnotation{ 58a5f9cda1SChristian Sigg *this, "gpu-binary-annotation", 59a5f9cda1SChristian Sigg llvm::cl::desc("Annotation attribute string for GPU binary"), 60a5f9cda1SChristian Sigg llvm::cl::init(gpu::getDefaultGpuBinaryAnnotation())}; 61a5f9cda1SChristian Sigg }; 62a5f9cda1SChristian Sigg 63a5f9cda1SChristian Sigg struct FunctionCallBuilder { 64a5f9cda1SChristian Sigg FunctionCallBuilder(StringRef functionName, Type returnType, 65a5f9cda1SChristian Sigg ArrayRef<Type> argumentTypes) 66a5f9cda1SChristian Sigg : functionName(functionName), 67a5f9cda1SChristian Sigg functionType(LLVM::LLVMFunctionType::get(returnType, argumentTypes)) {} 68a5f9cda1SChristian Sigg LLVM::CallOp create(Location loc, OpBuilder &builder, 69a5f9cda1SChristian Sigg ArrayRef<Value> arguments) const; 70a5f9cda1SChristian Sigg 71a5f9cda1SChristian Sigg StringRef functionName; 72a5f9cda1SChristian Sigg LLVM::LLVMFunctionType functionType; 73a5f9cda1SChristian Sigg }; 74a5f9cda1SChristian Sigg 75a5f9cda1SChristian Sigg template <typename OpTy> 76a5f9cda1SChristian Sigg class ConvertOpToGpuRuntimeCallPattern : public ConvertOpToLLVMPattern<OpTy> { 77a5f9cda1SChristian Sigg public: 78a5f9cda1SChristian Sigg explicit ConvertOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 79a5f9cda1SChristian Sigg : ConvertOpToLLVMPattern<OpTy>(typeConverter) {} 80a5f9cda1SChristian Sigg 81a5f9cda1SChristian Sigg protected: 82a5f9cda1SChristian Sigg MLIRContext *context = &this->getTypeConverter()->getContext(); 83a5f9cda1SChristian Sigg 84a5f9cda1SChristian Sigg Type llvmVoidType = LLVM::LLVMVoidType::get(context); 85a5f9cda1SChristian Sigg Type llvmPointerType = 86a5f9cda1SChristian Sigg LLVM::LLVMPointerType::get(IntegerType::get(context, 8)); 87a5f9cda1SChristian Sigg Type llvmPointerPointerType = LLVM::LLVMPointerType::get(llvmPointerType); 88a5f9cda1SChristian Sigg Type llvmInt8Type = IntegerType::get(context, 8); 89a5f9cda1SChristian Sigg Type llvmInt32Type = IntegerType::get(context, 32); 90a5f9cda1SChristian Sigg Type llvmInt64Type = IntegerType::get(context, 64); 91a5f9cda1SChristian Sigg Type llvmIntPtrType = IntegerType::get( 92a5f9cda1SChristian Sigg context, this->getTypeConverter()->getPointerBitwidth(0)); 93a5f9cda1SChristian Sigg 94a5f9cda1SChristian Sigg FunctionCallBuilder moduleLoadCallBuilder = { 95a5f9cda1SChristian Sigg "mgpuModuleLoad", 96a5f9cda1SChristian Sigg llvmPointerType /* void *module */, 97a5f9cda1SChristian Sigg {llvmPointerType /* void *cubin */}}; 98a5f9cda1SChristian Sigg FunctionCallBuilder moduleUnloadCallBuilder = { 99a5f9cda1SChristian Sigg "mgpuModuleUnload", llvmVoidType, {llvmPointerType /* void *module */}}; 100a5f9cda1SChristian Sigg FunctionCallBuilder moduleGetFunctionCallBuilder = { 101a5f9cda1SChristian Sigg "mgpuModuleGetFunction", 102a5f9cda1SChristian Sigg llvmPointerType /* void *function */, 103a5f9cda1SChristian Sigg { 104a5f9cda1SChristian Sigg llvmPointerType, /* void *module */ 105a5f9cda1SChristian Sigg llvmPointerType /* char *name */ 106a5f9cda1SChristian Sigg }}; 107a5f9cda1SChristian Sigg FunctionCallBuilder launchKernelCallBuilder = { 108a5f9cda1SChristian Sigg "mgpuLaunchKernel", 109a5f9cda1SChristian Sigg llvmVoidType, 110a5f9cda1SChristian Sigg { 111a5f9cda1SChristian Sigg llvmPointerType, /* void* f */ 112a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t gridXDim */ 113a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t gridyDim */ 114a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t gridZDim */ 115a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t blockXDim */ 116a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t blockYDim */ 117a5f9cda1SChristian Sigg llvmIntPtrType, /* intptr_t blockZDim */ 118a5f9cda1SChristian Sigg llvmInt32Type, /* unsigned int sharedMemBytes */ 119a5f9cda1SChristian Sigg llvmPointerType, /* void *hstream */ 120a5f9cda1SChristian Sigg llvmPointerPointerType, /* void **kernelParams */ 121a5f9cda1SChristian Sigg llvmPointerPointerType /* void **extra */ 122a5f9cda1SChristian Sigg }}; 123a5f9cda1SChristian Sigg FunctionCallBuilder streamCreateCallBuilder = { 124a5f9cda1SChristian Sigg "mgpuStreamCreate", llvmPointerType /* void *stream */, {}}; 125a5f9cda1SChristian Sigg FunctionCallBuilder streamDestroyCallBuilder = { 126a5f9cda1SChristian Sigg "mgpuStreamDestroy", llvmVoidType, {llvmPointerType /* void *stream */}}; 127a5f9cda1SChristian Sigg FunctionCallBuilder streamSynchronizeCallBuilder = { 128a5f9cda1SChristian Sigg "mgpuStreamSynchronize", 129a5f9cda1SChristian Sigg llvmVoidType, 130a5f9cda1SChristian Sigg {llvmPointerType /* void *stream */}}; 131a5f9cda1SChristian Sigg FunctionCallBuilder streamWaitEventCallBuilder = { 132a5f9cda1SChristian Sigg "mgpuStreamWaitEvent", 133a5f9cda1SChristian Sigg llvmVoidType, 134a5f9cda1SChristian Sigg {llvmPointerType /* void *stream */, llvmPointerType /* void *event */}}; 135a5f9cda1SChristian Sigg FunctionCallBuilder eventCreateCallBuilder = { 136a5f9cda1SChristian Sigg "mgpuEventCreate", llvmPointerType /* void *event */, {}}; 137a5f9cda1SChristian Sigg FunctionCallBuilder eventDestroyCallBuilder = { 138a5f9cda1SChristian Sigg "mgpuEventDestroy", llvmVoidType, {llvmPointerType /* void *event */}}; 139a5f9cda1SChristian Sigg FunctionCallBuilder eventSynchronizeCallBuilder = { 140a5f9cda1SChristian Sigg "mgpuEventSynchronize", 141a5f9cda1SChristian Sigg llvmVoidType, 142a5f9cda1SChristian Sigg {llvmPointerType /* void *event */}}; 143a5f9cda1SChristian Sigg FunctionCallBuilder eventRecordCallBuilder = { 144a5f9cda1SChristian Sigg "mgpuEventRecord", 145a5f9cda1SChristian Sigg llvmVoidType, 146a5f9cda1SChristian Sigg {llvmPointerType /* void *event */, llvmPointerType /* void *stream */}}; 147a5f9cda1SChristian Sigg FunctionCallBuilder hostRegisterCallBuilder = { 148a5f9cda1SChristian Sigg "mgpuMemHostRegisterMemRef", 149a5f9cda1SChristian Sigg llvmVoidType, 150a5f9cda1SChristian Sigg {llvmIntPtrType /* intptr_t rank */, 151a5f9cda1SChristian Sigg llvmPointerType /* void *memrefDesc */, 152a5f9cda1SChristian Sigg llvmIntPtrType /* intptr_t elementSizeBytes */}}; 153a5f9cda1SChristian Sigg FunctionCallBuilder allocCallBuilder = { 154a5f9cda1SChristian Sigg "mgpuMemAlloc", 155a5f9cda1SChristian Sigg llvmPointerType /* void * */, 156a5f9cda1SChristian Sigg {llvmIntPtrType /* intptr_t sizeBytes */, 157a5f9cda1SChristian Sigg llvmPointerType /* void *stream */}}; 158a5f9cda1SChristian Sigg FunctionCallBuilder deallocCallBuilder = { 159a5f9cda1SChristian Sigg "mgpuMemFree", 160a5f9cda1SChristian Sigg llvmVoidType, 161a5f9cda1SChristian Sigg {llvmPointerType /* void *ptr */, llvmPointerType /* void *stream */}}; 162a5f9cda1SChristian Sigg FunctionCallBuilder memcpyCallBuilder = { 163a5f9cda1SChristian Sigg "mgpuMemcpy", 164a5f9cda1SChristian Sigg llvmVoidType, 165a5f9cda1SChristian Sigg {llvmPointerType /* void *dst */, llvmPointerType /* void *src */, 166a5f9cda1SChristian Sigg llvmIntPtrType /* intptr_t sizeBytes */, 167a5f9cda1SChristian Sigg llvmPointerType /* void *stream */}}; 168a5f9cda1SChristian Sigg }; 169a5f9cda1SChristian Sigg 170a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.host_register operations into a GPU runtime 171a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 172a5f9cda1SChristian Sigg class ConvertHostRegisterOpToGpuRuntimeCallPattern 173a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::HostRegisterOp> { 174a5f9cda1SChristian Sigg public: 175a5f9cda1SChristian Sigg ConvertHostRegisterOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 176a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::HostRegisterOp>(typeConverter) {} 177a5f9cda1SChristian Sigg 178a5f9cda1SChristian Sigg private: 179a5f9cda1SChristian Sigg LogicalResult 180a5f9cda1SChristian Sigg matchAndRewrite(gpu::HostRegisterOp hostRegisterOp, ArrayRef<Value> operands, 181a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 182a5f9cda1SChristian Sigg }; 183a5f9cda1SChristian Sigg 184a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.alloc operations into a GPU runtime 185a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 186a5f9cda1SChristian Sigg class ConvertAllocOpToGpuRuntimeCallPattern 187a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::AllocOp> { 188a5f9cda1SChristian Sigg public: 189a5f9cda1SChristian Sigg ConvertAllocOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 190a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::AllocOp>(typeConverter) {} 191a5f9cda1SChristian Sigg 192a5f9cda1SChristian Sigg private: 193a5f9cda1SChristian Sigg LogicalResult 194a5f9cda1SChristian Sigg matchAndRewrite(gpu::AllocOp allocOp, ArrayRef<Value> operands, 195a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 196a5f9cda1SChristian Sigg }; 197a5f9cda1SChristian Sigg 198a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.dealloc operations into a GPU runtime 199a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 200a5f9cda1SChristian Sigg class ConvertDeallocOpToGpuRuntimeCallPattern 201a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::DeallocOp> { 202a5f9cda1SChristian Sigg public: 203a5f9cda1SChristian Sigg ConvertDeallocOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 204a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::DeallocOp>(typeConverter) {} 205a5f9cda1SChristian Sigg 206a5f9cda1SChristian Sigg private: 207a5f9cda1SChristian Sigg LogicalResult 208a5f9cda1SChristian Sigg matchAndRewrite(gpu::DeallocOp deallocOp, ArrayRef<Value> operands, 209a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 210a5f9cda1SChristian Sigg }; 211a5f9cda1SChristian Sigg 212a5f9cda1SChristian Sigg class ConvertAsyncYieldToGpuRuntimeCallPattern 213a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<async::YieldOp> { 214a5f9cda1SChristian Sigg public: 215a5f9cda1SChristian Sigg ConvertAsyncYieldToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 216a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<async::YieldOp>(typeConverter) {} 217a5f9cda1SChristian Sigg 218a5f9cda1SChristian Sigg private: 219a5f9cda1SChristian Sigg LogicalResult 220a5f9cda1SChristian Sigg matchAndRewrite(async::YieldOp yieldOp, ArrayRef<Value> operands, 221a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 222a5f9cda1SChristian Sigg }; 223a5f9cda1SChristian Sigg 224a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.wait operations into a GPU runtime 225a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 226a5f9cda1SChristian Sigg class ConvertWaitOpToGpuRuntimeCallPattern 227a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp> { 228a5f9cda1SChristian Sigg public: 229a5f9cda1SChristian Sigg ConvertWaitOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 230a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp>(typeConverter) {} 231a5f9cda1SChristian Sigg 232a5f9cda1SChristian Sigg private: 233a5f9cda1SChristian Sigg LogicalResult 234a5f9cda1SChristian Sigg matchAndRewrite(gpu::WaitOp waitOp, ArrayRef<Value> operands, 235a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 236a5f9cda1SChristian Sigg }; 237a5f9cda1SChristian Sigg 238a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.wait async operations into a GPU runtime 239a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 240a5f9cda1SChristian Sigg class ConvertWaitAsyncOpToGpuRuntimeCallPattern 241a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp> { 242a5f9cda1SChristian Sigg public: 243a5f9cda1SChristian Sigg ConvertWaitAsyncOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 244a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp>(typeConverter) {} 245a5f9cda1SChristian Sigg 246a5f9cda1SChristian Sigg private: 247a5f9cda1SChristian Sigg LogicalResult 248a5f9cda1SChristian Sigg matchAndRewrite(gpu::WaitOp waitOp, ArrayRef<Value> operands, 249a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 250a5f9cda1SChristian Sigg }; 251a5f9cda1SChristian Sigg 252a5f9cda1SChristian Sigg /// A rewrite patter to convert gpu.launch_func operations into a sequence of 253a5f9cda1SChristian Sigg /// GPU runtime calls. Currently it supports CUDA and ROCm (HIP). 254a5f9cda1SChristian Sigg /// 255a5f9cda1SChristian Sigg /// In essence, a gpu.launch_func operations gets compiled into the following 256a5f9cda1SChristian Sigg /// sequence of runtime calls: 257a5f9cda1SChristian Sigg /// 258a5f9cda1SChristian Sigg /// * moduleLoad -- loads the module given the cubin / hsaco data 259a5f9cda1SChristian Sigg /// * moduleGetFunction -- gets a handle to the actual kernel function 260a5f9cda1SChristian Sigg /// * getStreamHelper -- initializes a new compute stream on GPU 261a5f9cda1SChristian Sigg /// * launchKernel -- launches the kernel on a stream 262a5f9cda1SChristian Sigg /// * streamSynchronize -- waits for operations on the stream to finish 263a5f9cda1SChristian Sigg /// 264a5f9cda1SChristian Sigg /// Intermediate data structures are allocated on the stack. 265a5f9cda1SChristian Sigg class ConvertLaunchFuncOpToGpuRuntimeCallPattern 266a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::LaunchFuncOp> { 267a5f9cda1SChristian Sigg public: 268a5f9cda1SChristian Sigg ConvertLaunchFuncOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter, 269a5f9cda1SChristian Sigg StringRef gpuBinaryAnnotation) 270a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::LaunchFuncOp>(typeConverter), 271a5f9cda1SChristian Sigg gpuBinaryAnnotation(gpuBinaryAnnotation) {} 272a5f9cda1SChristian Sigg 273a5f9cda1SChristian Sigg private: 274a5f9cda1SChristian Sigg Value generateParamsArray(gpu::LaunchFuncOp launchOp, 275a5f9cda1SChristian Sigg ArrayRef<Value> operands, OpBuilder &builder) const; 276a5f9cda1SChristian Sigg Value generateKernelNameConstant(StringRef moduleName, StringRef name, 277a5f9cda1SChristian Sigg Location loc, OpBuilder &builder) const; 278a5f9cda1SChristian Sigg 279a5f9cda1SChristian Sigg LogicalResult 280a5f9cda1SChristian Sigg matchAndRewrite(gpu::LaunchFuncOp launchOp, ArrayRef<Value> operands, 281a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 282a5f9cda1SChristian Sigg 283a5f9cda1SChristian Sigg llvm::SmallString<32> gpuBinaryAnnotation; 284a5f9cda1SChristian Sigg }; 285a5f9cda1SChristian Sigg 286a5f9cda1SChristian Sigg class EraseGpuModuleOpPattern : public OpRewritePattern<gpu::GPUModuleOp> { 287a5f9cda1SChristian Sigg using OpRewritePattern<gpu::GPUModuleOp>::OpRewritePattern; 288a5f9cda1SChristian Sigg 289a5f9cda1SChristian Sigg LogicalResult matchAndRewrite(gpu::GPUModuleOp op, 290a5f9cda1SChristian Sigg PatternRewriter &rewriter) const override { 291a5f9cda1SChristian Sigg // GPU kernel modules are no longer necessary since we have a global 292a5f9cda1SChristian Sigg // constant with the CUBIN, or HSACO data. 293a5f9cda1SChristian Sigg rewriter.eraseOp(op); 294a5f9cda1SChristian Sigg return success(); 295a5f9cda1SChristian Sigg } 296a5f9cda1SChristian Sigg }; 297a5f9cda1SChristian Sigg 298a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.memcpy operations into a GPU runtime 299a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP). 300a5f9cda1SChristian Sigg class ConvertMemcpyOpToGpuRuntimeCallPattern 301a5f9cda1SChristian Sigg : public ConvertOpToGpuRuntimeCallPattern<gpu::MemcpyOp> { 302a5f9cda1SChristian Sigg public: 303a5f9cda1SChristian Sigg ConvertMemcpyOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter) 304a5f9cda1SChristian Sigg : ConvertOpToGpuRuntimeCallPattern<gpu::MemcpyOp>(typeConverter) {} 305a5f9cda1SChristian Sigg 306a5f9cda1SChristian Sigg private: 307a5f9cda1SChristian Sigg LogicalResult 308a5f9cda1SChristian Sigg matchAndRewrite(gpu::MemcpyOp memcpyOp, ArrayRef<Value> operands, 309a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const override; 310a5f9cda1SChristian Sigg }; 311a5f9cda1SChristian Sigg } // namespace 312a5f9cda1SChristian Sigg 313a5f9cda1SChristian Sigg void GpuToLLVMConversionPass::runOnOperation() { 314a5f9cda1SChristian Sigg LLVMTypeConverter converter(&getContext()); 315dc4e913bSChris Lattner RewritePatternSet patterns(&getContext()); 316a5f9cda1SChristian Sigg LLVMConversionTarget target(getContext()); 317a5f9cda1SChristian Sigg 318abe501f2SChristian Sigg target.addIllegalDialect<gpu::GPUDialect>(); 319*881dc34fSAlex Zinenko target.addIllegalOp<UnrealizedConversionCastOp>(); 320abe501f2SChristian Sigg 321a5f9cda1SChristian Sigg populateVectorToLLVMConversionPatterns(converter, patterns); 32275e5f0aaSAlex Zinenko populateMemRefToLLVMConversionPatterns(converter, patterns); 323a5f9cda1SChristian Sigg populateStdToLLVMConversionPatterns(converter, patterns); 3243a506b31SChris Lattner populateAsyncStructuralTypeConversionsAndLegality(converter, patterns, 3253a506b31SChris Lattner target); 326a5f9cda1SChristian Sigg 327a5f9cda1SChristian Sigg converter.addConversion( 328a5f9cda1SChristian Sigg [context = &converter.getContext()](gpu::AsyncTokenType type) -> Type { 329a5f9cda1SChristian Sigg return LLVM::LLVMPointerType::get(IntegerType::get(context, 8)); 330a5f9cda1SChristian Sigg }); 331dc4e913bSChris Lattner patterns.add<ConvertAllocOpToGpuRuntimeCallPattern, 332a5f9cda1SChristian Sigg ConvertDeallocOpToGpuRuntimeCallPattern, 333a5f9cda1SChristian Sigg ConvertHostRegisterOpToGpuRuntimeCallPattern, 334a5f9cda1SChristian Sigg ConvertMemcpyOpToGpuRuntimeCallPattern, 335a5f9cda1SChristian Sigg ConvertWaitAsyncOpToGpuRuntimeCallPattern, 336a5f9cda1SChristian Sigg ConvertWaitOpToGpuRuntimeCallPattern, 337a5f9cda1SChristian Sigg ConvertAsyncYieldToGpuRuntimeCallPattern>(converter); 338dc4e913bSChris Lattner patterns.add<ConvertLaunchFuncOpToGpuRuntimeCallPattern>(converter, 339dc4e913bSChris Lattner gpuBinaryAnnotation); 340dc4e913bSChris Lattner patterns.add<EraseGpuModuleOpPattern>(&converter.getContext()); 341a5f9cda1SChristian Sigg 342a5f9cda1SChristian Sigg if (failed( 343a5f9cda1SChristian Sigg applyPartialConversion(getOperation(), target, std::move(patterns)))) 344a5f9cda1SChristian Sigg signalPassFailure(); 345a5f9cda1SChristian Sigg } 346a5f9cda1SChristian Sigg 347a5f9cda1SChristian Sigg LLVM::CallOp FunctionCallBuilder::create(Location loc, OpBuilder &builder, 348a5f9cda1SChristian Sigg ArrayRef<Value> arguments) const { 349a5f9cda1SChristian Sigg auto module = builder.getBlock()->getParent()->getParentOfType<ModuleOp>(); 350a5f9cda1SChristian Sigg auto function = [&] { 351a5f9cda1SChristian Sigg if (auto function = module.lookupSymbol<LLVM::LLVMFuncOp>(functionName)) 352a5f9cda1SChristian Sigg return function; 353973ddb7dSMehdi Amini return OpBuilder::atBlockEnd(module.getBody()) 354a5f9cda1SChristian Sigg .create<LLVM::LLVMFuncOp>(loc, functionName, functionType); 355a5f9cda1SChristian Sigg }(); 356a5f9cda1SChristian Sigg return builder.create<LLVM::CallOp>( 357a5f9cda1SChristian Sigg loc, const_cast<LLVM::LLVMFunctionType &>(functionType).getReturnType(), 358a5f9cda1SChristian Sigg builder.getSymbolRefAttr(function), arguments); 359a5f9cda1SChristian Sigg } 360a5f9cda1SChristian Sigg 361a5f9cda1SChristian Sigg // Returns whether all operands are of LLVM type. 362a5f9cda1SChristian Sigg static LogicalResult areAllLLVMTypes(Operation *op, ValueRange operands, 363a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) { 364a5f9cda1SChristian Sigg if (!llvm::all_of(operands, [](Value value) { 365a5f9cda1SChristian Sigg return LLVM::isCompatibleType(value.getType()); 366a5f9cda1SChristian Sigg })) 367a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure( 368a5f9cda1SChristian Sigg op, "Cannot convert if operands aren't of LLVM type."); 369a5f9cda1SChristian Sigg return success(); 370a5f9cda1SChristian Sigg } 371a5f9cda1SChristian Sigg 372a5f9cda1SChristian Sigg static LogicalResult 373a5f9cda1SChristian Sigg isAsyncWithOneDependency(ConversionPatternRewriter &rewriter, 374a5f9cda1SChristian Sigg gpu::AsyncOpInterface op) { 375a5f9cda1SChristian Sigg if (op.getAsyncDependencies().size() != 1) 376a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure( 377a5f9cda1SChristian Sigg op, "Can only convert with exactly one async dependency."); 378a5f9cda1SChristian Sigg 379a5f9cda1SChristian Sigg if (!op.getAsyncToken()) 380a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure(op, "Can convert only async version."); 381a5f9cda1SChristian Sigg 382a5f9cda1SChristian Sigg return success(); 383a5f9cda1SChristian Sigg } 384a5f9cda1SChristian Sigg 385a5f9cda1SChristian Sigg LogicalResult ConvertHostRegisterOpToGpuRuntimeCallPattern::matchAndRewrite( 386a5f9cda1SChristian Sigg gpu::HostRegisterOp hostRegisterOp, ArrayRef<Value> operands, 387a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 388a5f9cda1SChristian Sigg auto *op = hostRegisterOp.getOperation(); 389a5f9cda1SChristian Sigg if (failed(areAllLLVMTypes(op, operands, rewriter))) 390a5f9cda1SChristian Sigg return failure(); 391a5f9cda1SChristian Sigg 392a5f9cda1SChristian Sigg Location loc = op->getLoc(); 393a5f9cda1SChristian Sigg 394a5f9cda1SChristian Sigg auto memRefType = hostRegisterOp.value().getType(); 395a5f9cda1SChristian Sigg auto elementType = memRefType.cast<UnrankedMemRefType>().getElementType(); 396a5f9cda1SChristian Sigg auto elementSize = getSizeInBytes(loc, elementType, rewriter); 397a5f9cda1SChristian Sigg 398a5f9cda1SChristian Sigg auto arguments = getTypeConverter()->promoteOperands(loc, op->getOperands(), 399a5f9cda1SChristian Sigg operands, rewriter); 400a5f9cda1SChristian Sigg arguments.push_back(elementSize); 401a5f9cda1SChristian Sigg hostRegisterCallBuilder.create(loc, rewriter, arguments); 402a5f9cda1SChristian Sigg 403a5f9cda1SChristian Sigg rewriter.eraseOp(op); 404a5f9cda1SChristian Sigg return success(); 405a5f9cda1SChristian Sigg } 406a5f9cda1SChristian Sigg 407a5f9cda1SChristian Sigg LogicalResult ConvertAllocOpToGpuRuntimeCallPattern::matchAndRewrite( 408a5f9cda1SChristian Sigg gpu::AllocOp allocOp, ArrayRef<Value> operands, 409a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 410a5f9cda1SChristian Sigg MemRefType memRefType = allocOp.getType(); 411a5f9cda1SChristian Sigg 412a5f9cda1SChristian Sigg if (failed(areAllLLVMTypes(allocOp, operands, rewriter)) || 413a5f9cda1SChristian Sigg !isConvertibleAndHasIdentityMaps(memRefType) || 414a5f9cda1SChristian Sigg failed(isAsyncWithOneDependency(rewriter, allocOp))) 415a5f9cda1SChristian Sigg return failure(); 416a5f9cda1SChristian Sigg 417a5f9cda1SChristian Sigg auto loc = allocOp.getLoc(); 418a5f9cda1SChristian Sigg auto adaptor = gpu::AllocOpAdaptor(operands, allocOp->getAttrDictionary()); 419a5f9cda1SChristian Sigg 420a5f9cda1SChristian Sigg // Get shape of the memref as values: static sizes are constant 421a5f9cda1SChristian Sigg // values and dynamic sizes are passed to 'alloc' as operands. 422a5f9cda1SChristian Sigg SmallVector<Value, 4> shape; 423a5f9cda1SChristian Sigg SmallVector<Value, 4> strides; 424a5f9cda1SChristian Sigg Value sizeBytes; 425a5f9cda1SChristian Sigg getMemRefDescriptorSizes(loc, memRefType, adaptor.dynamicSizes(), rewriter, 426a5f9cda1SChristian Sigg shape, strides, sizeBytes); 427a5f9cda1SChristian Sigg 428a5f9cda1SChristian Sigg // Allocate the underlying buffer and store a pointer to it in the MemRef 429a5f9cda1SChristian Sigg // descriptor. 430a5f9cda1SChristian Sigg Type elementPtrType = this->getElementPtrType(memRefType); 431a5f9cda1SChristian Sigg auto stream = adaptor.asyncDependencies().front(); 432a5f9cda1SChristian Sigg Value allocatedPtr = 433a5f9cda1SChristian Sigg allocCallBuilder.create(loc, rewriter, {sizeBytes, stream}).getResult(0); 434a5f9cda1SChristian Sigg allocatedPtr = 435a5f9cda1SChristian Sigg rewriter.create<LLVM::BitcastOp>(loc, elementPtrType, allocatedPtr); 436a5f9cda1SChristian Sigg 437a5f9cda1SChristian Sigg // No alignment. 438a5f9cda1SChristian Sigg Value alignedPtr = allocatedPtr; 439a5f9cda1SChristian Sigg 440a5f9cda1SChristian Sigg // Create the MemRef descriptor. 441a5f9cda1SChristian Sigg auto memRefDescriptor = this->createMemRefDescriptor( 442a5f9cda1SChristian Sigg loc, memRefType, allocatedPtr, alignedPtr, shape, strides, rewriter); 443a5f9cda1SChristian Sigg 444a5f9cda1SChristian Sigg rewriter.replaceOp(allocOp, {memRefDescriptor, stream}); 445a5f9cda1SChristian Sigg 446a5f9cda1SChristian Sigg return success(); 447a5f9cda1SChristian Sigg } 448a5f9cda1SChristian Sigg 449a5f9cda1SChristian Sigg LogicalResult ConvertDeallocOpToGpuRuntimeCallPattern::matchAndRewrite( 450a5f9cda1SChristian Sigg gpu::DeallocOp deallocOp, ArrayRef<Value> operands, 451a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 452a5f9cda1SChristian Sigg if (failed(areAllLLVMTypes(deallocOp, operands, rewriter)) || 453a5f9cda1SChristian Sigg failed(isAsyncWithOneDependency(rewriter, deallocOp))) 454a5f9cda1SChristian Sigg return failure(); 455a5f9cda1SChristian Sigg 456a5f9cda1SChristian Sigg Location loc = deallocOp.getLoc(); 457a5f9cda1SChristian Sigg 458a5f9cda1SChristian Sigg auto adaptor = 459a5f9cda1SChristian Sigg gpu::DeallocOpAdaptor(operands, deallocOp->getAttrDictionary()); 460a5f9cda1SChristian Sigg Value pointer = 461a5f9cda1SChristian Sigg MemRefDescriptor(adaptor.memref()).allocatedPtr(rewriter, loc); 462a5f9cda1SChristian Sigg auto casted = rewriter.create<LLVM::BitcastOp>(loc, llvmPointerType, pointer); 463a5f9cda1SChristian Sigg Value stream = adaptor.asyncDependencies().front(); 464a5f9cda1SChristian Sigg deallocCallBuilder.create(loc, rewriter, {casted, stream}); 465a5f9cda1SChristian Sigg 466a5f9cda1SChristian Sigg rewriter.replaceOp(deallocOp, {stream}); 467a5f9cda1SChristian Sigg return success(); 468a5f9cda1SChristian Sigg } 469a5f9cda1SChristian Sigg 470a5f9cda1SChristian Sigg static bool isGpuAsyncTokenType(Value value) { 471a5f9cda1SChristian Sigg return value.getType().isa<gpu::AsyncTokenType>(); 472a5f9cda1SChristian Sigg } 473a5f9cda1SChristian Sigg 474a5f9cda1SChristian Sigg // Converts !gpu.async.token operands of `async.yield` to runtime calls. The 475a5f9cda1SChristian Sigg // !gpu.async.token are lowered to stream within the async.execute region, but 476a5f9cda1SChristian Sigg // are passed as events between them. For each !gpu.async.token operand, we 477a5f9cda1SChristian Sigg // create an event and record it on the stream. 478a5f9cda1SChristian Sigg LogicalResult ConvertAsyncYieldToGpuRuntimeCallPattern::matchAndRewrite( 479a5f9cda1SChristian Sigg async::YieldOp yieldOp, ArrayRef<Value> operands, 480a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 481a5f9cda1SChristian Sigg if (llvm::none_of(yieldOp.operands(), isGpuAsyncTokenType)) 482a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure(yieldOp, "no gpu async token operand"); 483a5f9cda1SChristian Sigg 484a5f9cda1SChristian Sigg Location loc = yieldOp.getLoc(); 485a5f9cda1SChristian Sigg SmallVector<Value, 4> newOperands(operands.begin(), operands.end()); 486a5f9cda1SChristian Sigg llvm::SmallDenseSet<Value> streams; 487a5f9cda1SChristian Sigg for (auto &operand : yieldOp->getOpOperands()) { 488a5f9cda1SChristian Sigg if (!isGpuAsyncTokenType(operand.get())) 489a5f9cda1SChristian Sigg continue; 490a5f9cda1SChristian Sigg auto idx = operand.getOperandNumber(); 491a5f9cda1SChristian Sigg auto stream = operands[idx]; 492a5f9cda1SChristian Sigg auto event = eventCreateCallBuilder.create(loc, rewriter, {}).getResult(0); 493a5f9cda1SChristian Sigg eventRecordCallBuilder.create(loc, rewriter, {event, stream}); 494a5f9cda1SChristian Sigg newOperands[idx] = event; 495a5f9cda1SChristian Sigg streams.insert(stream); 496a5f9cda1SChristian Sigg } 497a5f9cda1SChristian Sigg for (auto stream : streams) 498a5f9cda1SChristian Sigg streamDestroyCallBuilder.create(loc, rewriter, {stream}); 499a5f9cda1SChristian Sigg 500a5f9cda1SChristian Sigg rewriter.updateRootInPlace(yieldOp, 501a5f9cda1SChristian Sigg [&] { yieldOp->setOperands(newOperands); }); 502a5f9cda1SChristian Sigg return success(); 503a5f9cda1SChristian Sigg } 504a5f9cda1SChristian Sigg 505a5f9cda1SChristian Sigg // Returns whether `value` is the result of an LLVM::CallOp to `functionName`. 506a5f9cda1SChristian Sigg static bool isDefinedByCallTo(Value value, StringRef functionName) { 507a5f9cda1SChristian Sigg assert(value.getType().isa<LLVM::LLVMPointerType>()); 508a5f9cda1SChristian Sigg if (auto defOp = value.getDefiningOp<LLVM::CallOp>()) 509a5f9cda1SChristian Sigg return defOp.callee()->equals(functionName); 510a5f9cda1SChristian Sigg return false; 511a5f9cda1SChristian Sigg } 512a5f9cda1SChristian Sigg 513a5f9cda1SChristian Sigg // Converts `gpu.wait` to runtime calls. The converted op synchronizes the host 514a5f9cda1SChristian Sigg // with the stream/event operands. The operands are destroyed. That is, it 515a5f9cda1SChristian Sigg // assumes that it is not used afterwards or elsewhere. Otherwise we will get a 516a5f9cda1SChristian Sigg // runtime error. Eventually, we should guarantee this property. 517a5f9cda1SChristian Sigg LogicalResult ConvertWaitOpToGpuRuntimeCallPattern::matchAndRewrite( 518a5f9cda1SChristian Sigg gpu::WaitOp waitOp, ArrayRef<Value> operands, 519a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 520a5f9cda1SChristian Sigg if (waitOp.asyncToken()) 521a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure(waitOp, "Cannot convert async op."); 522a5f9cda1SChristian Sigg 523a5f9cda1SChristian Sigg Location loc = waitOp.getLoc(); 524a5f9cda1SChristian Sigg 525a5f9cda1SChristian Sigg for (auto operand : operands) { 526a5f9cda1SChristian Sigg if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) { 527a5f9cda1SChristian Sigg // The converted operand's definition created a stream. 528a5f9cda1SChristian Sigg streamSynchronizeCallBuilder.create(loc, rewriter, {operand}); 529a5f9cda1SChristian Sigg streamDestroyCallBuilder.create(loc, rewriter, {operand}); 530a5f9cda1SChristian Sigg } else { 531a5f9cda1SChristian Sigg // Otherwise the converted operand is an event. This assumes that we use 532a5f9cda1SChristian Sigg // events in control flow code as well. 533a5f9cda1SChristian Sigg eventSynchronizeCallBuilder.create(loc, rewriter, {operand}); 534a5f9cda1SChristian Sigg eventDestroyCallBuilder.create(loc, rewriter, {operand}); 535a5f9cda1SChristian Sigg } 536a5f9cda1SChristian Sigg } 537a5f9cda1SChristian Sigg 538a5f9cda1SChristian Sigg rewriter.eraseOp(waitOp); 539a5f9cda1SChristian Sigg return success(); 540a5f9cda1SChristian Sigg } 541a5f9cda1SChristian Sigg 542a5f9cda1SChristian Sigg // Converts `gpu.wait async` to runtime calls. The converted op creates a new 543a5f9cda1SChristian Sigg // stream that is synchronized with stream/event operands. The operands are 544a5f9cda1SChristian Sigg // destroyed. That is, it assumes that it is not used afterwards or elsewhere. 545a5f9cda1SChristian Sigg // Otherwise we will get a runtime error. Eventually, we should guarantee this 546a5f9cda1SChristian Sigg // property. 547a5f9cda1SChristian Sigg LogicalResult ConvertWaitAsyncOpToGpuRuntimeCallPattern::matchAndRewrite( 548a5f9cda1SChristian Sigg gpu::WaitOp waitOp, ArrayRef<Value> operands, 549a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 550a5f9cda1SChristian Sigg if (!waitOp.asyncToken()) 551a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure(waitOp, "Can only convert async op."); 552a5f9cda1SChristian Sigg 553a5f9cda1SChristian Sigg Location loc = waitOp.getLoc(); 554a5f9cda1SChristian Sigg 555a5f9cda1SChristian Sigg auto insertionPoint = rewriter.saveInsertionPoint(); 556a5f9cda1SChristian Sigg SmallVector<Value, 1> events; 557a5f9cda1SChristian Sigg for (auto pair : llvm::zip(waitOp.asyncDependencies(), operands)) { 558a5f9cda1SChristian Sigg auto operand = std::get<1>(pair); 559a5f9cda1SChristian Sigg if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) { 560a5f9cda1SChristian Sigg // The converted operand's definition created a stream. Insert an event 561a5f9cda1SChristian Sigg // into the stream just after the last use of the original token operand. 562a5f9cda1SChristian Sigg auto *defOp = std::get<0>(pair).getDefiningOp(); 563a5f9cda1SChristian Sigg rewriter.setInsertionPointAfter(defOp); 564a5f9cda1SChristian Sigg auto event = 565a5f9cda1SChristian Sigg eventCreateCallBuilder.create(loc, rewriter, {}).getResult(0); 566a5f9cda1SChristian Sigg eventRecordCallBuilder.create(loc, rewriter, {event, operand}); 567a5f9cda1SChristian Sigg events.push_back(event); 568a5f9cda1SChristian Sigg } else { 569a5f9cda1SChristian Sigg // Otherwise the converted operand is an event. This assumes that we use 570a5f9cda1SChristian Sigg // events in control flow code as well. 571a5f9cda1SChristian Sigg events.push_back(operand); 572a5f9cda1SChristian Sigg } 573a5f9cda1SChristian Sigg } 574a5f9cda1SChristian Sigg rewriter.restoreInsertionPoint(insertionPoint); 575a5f9cda1SChristian Sigg auto stream = streamCreateCallBuilder.create(loc, rewriter, {}).getResult(0); 576a5f9cda1SChristian Sigg for (auto event : events) 577a5f9cda1SChristian Sigg streamWaitEventCallBuilder.create(loc, rewriter, {stream, event}); 578a5f9cda1SChristian Sigg for (auto event : events) 579a5f9cda1SChristian Sigg eventDestroyCallBuilder.create(loc, rewriter, {event}); 580a5f9cda1SChristian Sigg rewriter.replaceOp(waitOp, {stream}); 581a5f9cda1SChristian Sigg 582a5f9cda1SChristian Sigg return success(); 583a5f9cda1SChristian Sigg } 584a5f9cda1SChristian Sigg 585a5f9cda1SChristian Sigg // Creates a struct containing all kernel parameters on the stack and returns 586a5f9cda1SChristian Sigg // an array of type-erased pointers to the fields of the struct. The array can 587a5f9cda1SChristian Sigg // then be passed to the CUDA / ROCm (HIP) kernel launch calls. 588a5f9cda1SChristian Sigg // The generated code is essentially as follows: 589a5f9cda1SChristian Sigg // 590a5f9cda1SChristian Sigg // %struct = alloca(sizeof(struct { Parameters... })) 591a5f9cda1SChristian Sigg // %array = alloca(NumParameters * sizeof(void *)) 592a5f9cda1SChristian Sigg // for (i : [0, NumParameters)) 593a5f9cda1SChristian Sigg // %fieldPtr = llvm.getelementptr %struct[0, i] 594a5f9cda1SChristian Sigg // llvm.store parameters[i], %fieldPtr 595a5f9cda1SChristian Sigg // %elementPtr = llvm.getelementptr %array[i] 596a5f9cda1SChristian Sigg // llvm.store %fieldPtr, %elementPtr 597a5f9cda1SChristian Sigg // return %array 598a5f9cda1SChristian Sigg Value ConvertLaunchFuncOpToGpuRuntimeCallPattern::generateParamsArray( 599a5f9cda1SChristian Sigg gpu::LaunchFuncOp launchOp, ArrayRef<Value> operands, 600a5f9cda1SChristian Sigg OpBuilder &builder) const { 601a5f9cda1SChristian Sigg auto loc = launchOp.getLoc(); 602a5f9cda1SChristian Sigg auto numKernelOperands = launchOp.getNumKernelOperands(); 603a5f9cda1SChristian Sigg auto arguments = getTypeConverter()->promoteOperands( 604a5f9cda1SChristian Sigg loc, launchOp.getOperands().take_back(numKernelOperands), 605a5f9cda1SChristian Sigg operands.take_back(numKernelOperands), builder); 606a5f9cda1SChristian Sigg auto numArguments = arguments.size(); 607a5f9cda1SChristian Sigg SmallVector<Type, 4> argumentTypes; 608a5f9cda1SChristian Sigg argumentTypes.reserve(numArguments); 609a5f9cda1SChristian Sigg for (auto argument : arguments) 610a5f9cda1SChristian Sigg argumentTypes.push_back(argument.getType()); 611a5f9cda1SChristian Sigg auto structType = LLVM::LLVMStructType::getNewIdentified(context, StringRef(), 612a5f9cda1SChristian Sigg argumentTypes); 613a5f9cda1SChristian Sigg auto one = builder.create<LLVM::ConstantOp>(loc, llvmInt32Type, 614a5f9cda1SChristian Sigg builder.getI32IntegerAttr(1)); 615a5f9cda1SChristian Sigg auto structPtr = builder.create<LLVM::AllocaOp>( 616a5f9cda1SChristian Sigg loc, LLVM::LLVMPointerType::get(structType), one, /*alignment=*/0); 617a5f9cda1SChristian Sigg auto arraySize = builder.create<LLVM::ConstantOp>( 618a5f9cda1SChristian Sigg loc, llvmInt32Type, builder.getI32IntegerAttr(numArguments)); 619a5f9cda1SChristian Sigg auto arrayPtr = builder.create<LLVM::AllocaOp>(loc, llvmPointerPointerType, 620a5f9cda1SChristian Sigg arraySize, /*alignment=*/0); 621a5f9cda1SChristian Sigg auto zero = builder.create<LLVM::ConstantOp>(loc, llvmInt32Type, 622a5f9cda1SChristian Sigg builder.getI32IntegerAttr(0)); 623a5f9cda1SChristian Sigg for (auto en : llvm::enumerate(arguments)) { 624a5f9cda1SChristian Sigg auto index = builder.create<LLVM::ConstantOp>( 625a5f9cda1SChristian Sigg loc, llvmInt32Type, builder.getI32IntegerAttr(en.index())); 626a5f9cda1SChristian Sigg auto fieldPtr = builder.create<LLVM::GEPOp>( 627a5f9cda1SChristian Sigg loc, LLVM::LLVMPointerType::get(argumentTypes[en.index()]), structPtr, 628a5f9cda1SChristian Sigg ArrayRef<Value>{zero, index.getResult()}); 629a5f9cda1SChristian Sigg builder.create<LLVM::StoreOp>(loc, en.value(), fieldPtr); 630a5f9cda1SChristian Sigg auto elementPtr = builder.create<LLVM::GEPOp>(loc, llvmPointerPointerType, 631a5f9cda1SChristian Sigg arrayPtr, index.getResult()); 632a5f9cda1SChristian Sigg auto casted = 633a5f9cda1SChristian Sigg builder.create<LLVM::BitcastOp>(loc, llvmPointerType, fieldPtr); 634a5f9cda1SChristian Sigg builder.create<LLVM::StoreOp>(loc, casted, elementPtr); 635a5f9cda1SChristian Sigg } 636a5f9cda1SChristian Sigg return arrayPtr; 637a5f9cda1SChristian Sigg } 638a5f9cda1SChristian Sigg 639a5f9cda1SChristian Sigg // Generates an LLVM IR dialect global that contains the name of the given 640a5f9cda1SChristian Sigg // kernel function as a C string, and returns a pointer to its beginning. 641a5f9cda1SChristian Sigg // The code is essentially: 642a5f9cda1SChristian Sigg // 643a5f9cda1SChristian Sigg // llvm.global constant @kernel_name("function_name\00") 644a5f9cda1SChristian Sigg // func(...) { 645a5f9cda1SChristian Sigg // %0 = llvm.addressof @kernel_name 646a5f9cda1SChristian Sigg // %1 = llvm.constant (0 : index) 647a5f9cda1SChristian Sigg // %2 = llvm.getelementptr %0[%1, %1] : !llvm<"i8*"> 648a5f9cda1SChristian Sigg // } 649a5f9cda1SChristian Sigg Value ConvertLaunchFuncOpToGpuRuntimeCallPattern::generateKernelNameConstant( 650a5f9cda1SChristian Sigg StringRef moduleName, StringRef name, Location loc, 651a5f9cda1SChristian Sigg OpBuilder &builder) const { 652a5f9cda1SChristian Sigg // Make sure the trailing zero is included in the constant. 653a5f9cda1SChristian Sigg std::vector<char> kernelName(name.begin(), name.end()); 654a5f9cda1SChristian Sigg kernelName.push_back('\0'); 655a5f9cda1SChristian Sigg 656a5f9cda1SChristian Sigg std::string globalName = 657a5f9cda1SChristian Sigg std::string(llvm::formatv("{0}_{1}_kernel_name", moduleName, name)); 658a5f9cda1SChristian Sigg return LLVM::createGlobalString( 659a5f9cda1SChristian Sigg loc, builder, globalName, StringRef(kernelName.data(), kernelName.size()), 660a5f9cda1SChristian Sigg LLVM::Linkage::Internal); 661a5f9cda1SChristian Sigg } 662a5f9cda1SChristian Sigg 663a5f9cda1SChristian Sigg // Emits LLVM IR to launch a kernel function. Expects the module that contains 664a5f9cda1SChristian Sigg // the compiled kernel function as a cubin in the 'nvvm.cubin' attribute, or a 665a5f9cda1SChristian Sigg // hsaco in the 'rocdl.hsaco' attribute of the kernel function in the IR. 666a5f9cda1SChristian Sigg // 667a5f9cda1SChristian Sigg // %0 = call %binarygetter 668a5f9cda1SChristian Sigg // %1 = call %moduleLoad(%0) 669a5f9cda1SChristian Sigg // %2 = <see generateKernelNameConstant> 670a5f9cda1SChristian Sigg // %3 = call %moduleGetFunction(%1, %2) 671a5f9cda1SChristian Sigg // %4 = call %streamCreate() 672a5f9cda1SChristian Sigg // %5 = <see generateParamsArray> 673a5f9cda1SChristian Sigg // call %launchKernel(%3, <launchOp operands 0..5>, 0, %4, %5, nullptr) 674a5f9cda1SChristian Sigg // call %streamSynchronize(%4) 675a5f9cda1SChristian Sigg // call %streamDestroy(%4) 676a5f9cda1SChristian Sigg // call %moduleUnload(%1) 677a5f9cda1SChristian Sigg // 678a5f9cda1SChristian Sigg // If the op is async, the stream corresponds to the (single) async dependency 679a5f9cda1SChristian Sigg // as well as the async token the op produces. 680a5f9cda1SChristian Sigg LogicalResult ConvertLaunchFuncOpToGpuRuntimeCallPattern::matchAndRewrite( 681a5f9cda1SChristian Sigg gpu::LaunchFuncOp launchOp, ArrayRef<Value> operands, 682a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 683a5f9cda1SChristian Sigg if (failed(areAllLLVMTypes(launchOp, operands, rewriter))) 684a5f9cda1SChristian Sigg return failure(); 685a5f9cda1SChristian Sigg 686a5f9cda1SChristian Sigg if (launchOp.asyncDependencies().size() > 1) 687a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure( 688a5f9cda1SChristian Sigg launchOp, "Cannot convert with more than one async dependency."); 689a5f9cda1SChristian Sigg 690a5f9cda1SChristian Sigg // Fail when the synchronous version of the op has async dependencies. The 691a5f9cda1SChristian Sigg // lowering destroys the stream, and we do not want to check that there is no 692a5f9cda1SChristian Sigg // use of the stream after this op. 693a5f9cda1SChristian Sigg if (!launchOp.asyncToken() && !launchOp.asyncDependencies().empty()) 694a5f9cda1SChristian Sigg return rewriter.notifyMatchFailure( 695a5f9cda1SChristian Sigg launchOp, "Cannot convert non-async op with async dependencies."); 696a5f9cda1SChristian Sigg 697a5f9cda1SChristian Sigg Location loc = launchOp.getLoc(); 698a5f9cda1SChristian Sigg 699a5f9cda1SChristian Sigg // Create an LLVM global with CUBIN extracted from the kernel annotation and 700a5f9cda1SChristian Sigg // obtain a pointer to the first byte in it. 701a5f9cda1SChristian Sigg auto kernelModule = SymbolTable::lookupNearestSymbolFrom<gpu::GPUModuleOp>( 702a5f9cda1SChristian Sigg launchOp, launchOp.getKernelModuleName()); 703a5f9cda1SChristian Sigg assert(kernelModule && "expected a kernel module"); 704a5f9cda1SChristian Sigg 705a5f9cda1SChristian Sigg auto binaryAttr = 706a5f9cda1SChristian Sigg kernelModule->getAttrOfType<StringAttr>(gpuBinaryAnnotation); 707a5f9cda1SChristian Sigg if (!binaryAttr) { 708a5f9cda1SChristian Sigg kernelModule.emitOpError() 709a5f9cda1SChristian Sigg << "missing " << gpuBinaryAnnotation << " attribute"; 710a5f9cda1SChristian Sigg return failure(); 711a5f9cda1SChristian Sigg } 712a5f9cda1SChristian Sigg 713a5f9cda1SChristian Sigg SmallString<128> nameBuffer(kernelModule.getName()); 714a5f9cda1SChristian Sigg nameBuffer.append(kGpuBinaryStorageSuffix); 715a5f9cda1SChristian Sigg Value data = 716a5f9cda1SChristian Sigg LLVM::createGlobalString(loc, rewriter, nameBuffer.str(), 717a5f9cda1SChristian Sigg binaryAttr.getValue(), LLVM::Linkage::Internal); 718a5f9cda1SChristian Sigg 719a5f9cda1SChristian Sigg auto module = moduleLoadCallBuilder.create(loc, rewriter, data); 720a5f9cda1SChristian Sigg // Get the function from the module. The name corresponds to the name of 721a5f9cda1SChristian Sigg // the kernel function. 722a5f9cda1SChristian Sigg auto kernelName = generateKernelNameConstant( 723a5f9cda1SChristian Sigg launchOp.getKernelModuleName(), launchOp.getKernelName(), loc, rewriter); 724a5f9cda1SChristian Sigg auto function = moduleGetFunctionCallBuilder.create( 725a5f9cda1SChristian Sigg loc, rewriter, {module.getResult(0), kernelName}); 726a5f9cda1SChristian Sigg auto zero = rewriter.create<LLVM::ConstantOp>(loc, llvmInt32Type, 727a5f9cda1SChristian Sigg rewriter.getI32IntegerAttr(0)); 728a5f9cda1SChristian Sigg auto adaptor = 729a5f9cda1SChristian Sigg gpu::LaunchFuncOpAdaptor(operands, launchOp->getAttrDictionary()); 730a5f9cda1SChristian Sigg Value stream = 731a5f9cda1SChristian Sigg adaptor.asyncDependencies().empty() 732a5f9cda1SChristian Sigg ? streamCreateCallBuilder.create(loc, rewriter, {}).getResult(0) 733a5f9cda1SChristian Sigg : adaptor.asyncDependencies().front(); 734a5f9cda1SChristian Sigg // Create array of pointers to kernel arguments. 735a5f9cda1SChristian Sigg auto kernelParams = generateParamsArray(launchOp, operands, rewriter); 736a5f9cda1SChristian Sigg auto nullpointer = rewriter.create<LLVM::NullOp>(loc, llvmPointerPointerType); 737a5f9cda1SChristian Sigg launchKernelCallBuilder.create(loc, rewriter, 738a5f9cda1SChristian Sigg {function.getResult(0), launchOp.gridSizeX(), 739a5f9cda1SChristian Sigg launchOp.gridSizeY(), launchOp.gridSizeZ(), 740a5f9cda1SChristian Sigg launchOp.blockSizeX(), launchOp.blockSizeY(), 741a5f9cda1SChristian Sigg launchOp.blockSizeZ(), 742a5f9cda1SChristian Sigg /*sharedMemBytes=*/zero, stream, kernelParams, 743a5f9cda1SChristian Sigg /*extra=*/nullpointer}); 744a5f9cda1SChristian Sigg 745a5f9cda1SChristian Sigg if (launchOp.asyncToken()) { 746a5f9cda1SChristian Sigg // Async launch: make dependent ops use the same stream. 747a5f9cda1SChristian Sigg rewriter.replaceOp(launchOp, {stream}); 748a5f9cda1SChristian Sigg } else { 749a5f9cda1SChristian Sigg // Synchronize with host and destroy stream. This must be the stream created 750a5f9cda1SChristian Sigg // above (with no other uses) because we check that the synchronous version 751a5f9cda1SChristian Sigg // does not have any async dependencies. 752a5f9cda1SChristian Sigg streamSynchronizeCallBuilder.create(loc, rewriter, stream); 753a5f9cda1SChristian Sigg streamDestroyCallBuilder.create(loc, rewriter, stream); 754a5f9cda1SChristian Sigg rewriter.eraseOp(launchOp); 755a5f9cda1SChristian Sigg } 756a5f9cda1SChristian Sigg moduleUnloadCallBuilder.create(loc, rewriter, module.getResult(0)); 757a5f9cda1SChristian Sigg 758a5f9cda1SChristian Sigg return success(); 759a5f9cda1SChristian Sigg } 760a5f9cda1SChristian Sigg 761a5f9cda1SChristian Sigg LogicalResult ConvertMemcpyOpToGpuRuntimeCallPattern::matchAndRewrite( 762a5f9cda1SChristian Sigg gpu::MemcpyOp memcpyOp, ArrayRef<Value> operands, 763a5f9cda1SChristian Sigg ConversionPatternRewriter &rewriter) const { 764a5f9cda1SChristian Sigg auto memRefType = memcpyOp.src().getType().cast<MemRefType>(); 765a5f9cda1SChristian Sigg 766a5f9cda1SChristian Sigg if (failed(areAllLLVMTypes(memcpyOp, operands, rewriter)) || 767a5f9cda1SChristian Sigg !isConvertibleAndHasIdentityMaps(memRefType) || 768a5f9cda1SChristian Sigg failed(isAsyncWithOneDependency(rewriter, memcpyOp))) 769a5f9cda1SChristian Sigg return failure(); 770a5f9cda1SChristian Sigg 771a5f9cda1SChristian Sigg auto loc = memcpyOp.getLoc(); 772a5f9cda1SChristian Sigg auto adaptor = gpu::MemcpyOpAdaptor(operands, memcpyOp->getAttrDictionary()); 773a5f9cda1SChristian Sigg 774a5f9cda1SChristian Sigg MemRefDescriptor srcDesc(adaptor.src()); 775a5f9cda1SChristian Sigg 776a5f9cda1SChristian Sigg Value numElements = 777a5f9cda1SChristian Sigg memRefType.hasStaticShape() 778a5f9cda1SChristian Sigg ? createIndexConstant(rewriter, loc, memRefType.getNumElements()) 779a5f9cda1SChristian Sigg // For identity layouts (verified above), the number of elements is 780a5f9cda1SChristian Sigg // stride[0] * size[0]. 781a5f9cda1SChristian Sigg : rewriter.create<LLVM::MulOp>(loc, srcDesc.stride(rewriter, loc, 0), 782a5f9cda1SChristian Sigg srcDesc.size(rewriter, loc, 0)); 783a5f9cda1SChristian Sigg 784a5f9cda1SChristian Sigg Type elementPtrType = getElementPtrType(memRefType); 785a5f9cda1SChristian Sigg Value nullPtr = rewriter.create<LLVM::NullOp>(loc, elementPtrType); 786a5f9cda1SChristian Sigg Value gepPtr = rewriter.create<LLVM::GEPOp>( 787a5f9cda1SChristian Sigg loc, elementPtrType, ArrayRef<Value>{nullPtr, numElements}); 788a5f9cda1SChristian Sigg auto sizeBytes = 789a5f9cda1SChristian Sigg rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), gepPtr); 790a5f9cda1SChristian Sigg 791a5f9cda1SChristian Sigg auto src = rewriter.create<LLVM::BitcastOp>( 792a5f9cda1SChristian Sigg loc, llvmPointerType, srcDesc.alignedPtr(rewriter, loc)); 793a5f9cda1SChristian Sigg auto dst = rewriter.create<LLVM::BitcastOp>( 794a5f9cda1SChristian Sigg loc, llvmPointerType, 795a5f9cda1SChristian Sigg MemRefDescriptor(adaptor.dst()).alignedPtr(rewriter, loc)); 796a5f9cda1SChristian Sigg 797a5f9cda1SChristian Sigg auto stream = adaptor.asyncDependencies().front(); 798a5f9cda1SChristian Sigg memcpyCallBuilder.create(loc, rewriter, {dst, src, sizeBytes, stream}); 799a5f9cda1SChristian Sigg 800a5f9cda1SChristian Sigg rewriter.replaceOp(memcpyOp, {stream}); 801a5f9cda1SChristian Sigg 802a5f9cda1SChristian Sigg return success(); 803a5f9cda1SChristian Sigg } 804a5f9cda1SChristian Sigg 805a5f9cda1SChristian Sigg std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> 806a5f9cda1SChristian Sigg mlir::createGpuToLLVMConversionPass() { 807a5f9cda1SChristian Sigg return std::make_unique<GpuToLLVMConversionPass>(); 808a5f9cda1SChristian Sigg } 809