| // Copyright 2021 The IREE Authors |
| // Licensed 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 |
| #ifndef IREE_COMPILER_DIALECT_HAL_TARGET_ROCM_ROCMTARGETUTILS_H_ |
| #define IREE_COMPILER_DIALECT_HAL_TARGET_ROCM_ROCMTARGETUTILS_H_ |
| #include "iree/compiler/Dialect/HAL/Target/TargetBackend.h" |
| #include "llvm/IR/Module.h" |
| namespace mlir::iree_compiler::IREE::HAL { |
| // Links LLVM module to ROC Device Library Bit Code |
| void linkROCDLIfNecessary(llvm::Module *module, std::string targetChip, |
| // Compiles ISAToHsaco Code |
| std::string createHsaco(Location loc, const std::string isa, StringRef name); |
| } // namespace mlir::iree_compiler::IREE::HAL |
| #endif // IREE_COMPILER_DIALECT_HAL_TARGET_ROCM_ROCMTARGETUTILS_H_ |