[MLIR] [AMDGPU] Use correct flags when building SerializeToHsaco
The SerializeToHsaco pass does not depend on ROCm being available on the build system - it only requires ROCm to be present at runtime. However, the CMake file that built it tested for MLIR_ENABLE_ROCM_RUNNER , which implies that ROCm is currently available and is used to control building ROCm integration tests. Referencing MLIR_ENABLE_ROCM_RUNNER instead of MLIR_ENABLE_ROCM_CONVERSIONS in the SerializeToHsaco build therefore causes problems for clients who wish to build projects that depend on this pass on a system without an AMD GPU present. Reviewed By: whchung Differential Revision: https://reviews.llvm.org/D120663
Loading
Please sign in to comment