A series of preceding patches changed the mechanism for translating MLIR to LLVM IR to use dialect interface with delayed registration. It is no longer necessary for specific dialects to derive from ModuleTranslation. Remove all virtual methods from ModuleTranslation and factor out the entry point to be a free function. Also perform some cleanups in ModuleTranslation internals. Depends On D96774 Reviewed By: nicolasvasilache Differential Revision: https://reviews.llvm.org/D96775
64 lines
2.3 KiB
C++
64 lines
2.3 KiB
C++
//===- TestConvertGPUKernelToHsaco.cpp - Test gpu kernel hsaco lowering ---===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Conversion/GPUCommon/GPUCommonPass.h"
|
|
#include "mlir/Dialect/LLVMIR/ROCDLDialect.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
#include "mlir/Pass/PassManager.h"
|
|
#include "mlir/Target/LLVMIR.h"
|
|
#include "mlir/Target/LLVMIR/Dialect/ROCDL/ROCDLToLLVMIRTranslation.h"
|
|
#include "mlir/Target/LLVMIR/Export.h"
|
|
#include "llvm/Support/TargetSelect.h"
|
|
|
|
using namespace mlir;
|
|
|
|
#if MLIR_ROCM_CONVERSIONS_ENABLED
|
|
static OwnedBlob compileIsaToHsacoForTesting(const std::string &, Location,
|
|
StringRef) {
|
|
const char data[] = "HSACO";
|
|
return std::make_unique<std::vector<char>>(data, data + sizeof(data) - 1);
|
|
}
|
|
|
|
static void registerROCDLDialectTranslation(MLIRContext &context) {
|
|
DialectRegistry registry;
|
|
registry.insert<ROCDL::ROCDLDialect>();
|
|
registry.addDialectInterface<ROCDL::ROCDLDialect,
|
|
ROCDLDialectLLVMIRTranslationInterface>();
|
|
context.appendDialectRegistry(registry);
|
|
}
|
|
|
|
static std::unique_ptr<llvm::Module>
|
|
translateModuleToROCDL(Operation *m, llvm::LLVMContext &llvmContext,
|
|
StringRef moduleName) {
|
|
registerLLVMDialectTranslation(*m->getContext());
|
|
registerROCDLDialectTranslation(*m->getContext());
|
|
return translateModuleToLLVMIR(m, llvmContext, moduleName);
|
|
}
|
|
|
|
namespace mlir {
|
|
namespace test {
|
|
void registerTestConvertGPUKernelToHsacoPass() {
|
|
PassPipelineRegistration<>(
|
|
"test-kernel-to-hsaco",
|
|
"Convert all kernel functions to ROCm hsaco blobs",
|
|
[](OpPassManager &pm) {
|
|
// Initialize LLVM AMDGPU backend.
|
|
LLVMInitializeAMDGPUTarget();
|
|
LLVMInitializeAMDGPUTargetInfo();
|
|
LLVMInitializeAMDGPUTargetMC();
|
|
LLVMInitializeAMDGPUAsmPrinter();
|
|
|
|
pm.addPass(createConvertGPUKernelToBlobPass(
|
|
translateModuleToROCDL, compileIsaToHsacoForTesting,
|
|
"amdgcn-amd-amdhsa", "gfx900", "-code-object-v3", "rocdl.hsaco"));
|
|
});
|
|
}
|
|
} // namespace test
|
|
} // namespace mlir
|
|
#endif
|