[llvm] [ScheduleDAG] Allow disabling the SchedModel / Itineraries during Scheduling (PR #138057)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri May 2 06:03:18 PDT 2025
================
@@ -45,6 +45,9 @@ class TargetSchedModel {
unsigned computeInstrLatency(const MCSchedClassDesc &SCDesc) const;
+ bool EnableSchedModel = true;
+ bool EnableSchedItins = true;
----------------
arsenm wrote:
Document these, maybe should just make it an enum for which type to use
https://github.com/llvm/llvm-project/pull/138057
More information about the llvm-commits
mailing list