[llvm] [AMDGPU] Support bottom-up postRA scheduing. (PR #135295)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue May 27 06:44:14 PDT 2025
================
@@ -417,7 +417,9 @@ void GCNHazardRecognizer::AdvanceCycle() {
}
void GCNHazardRecognizer::RecedeCycle() {
- llvm_unreachable("hazard recognizer does not support bottom-up scheduling.");
+ if (IsHazardRecognizerMode || ST.getGeneration() < AMDGPUSubtarget::GFX11)
+ llvm_unreachable(
+ "hazard recognizer does not support bottom-up scheduling.");
----------------
arsenm wrote:
This shouldn't be unreachable, it's a fatal error
https://github.com/llvm/llvm-project/pull/135295
More information about the llvm-commits
mailing list