forked from OSchip/llvm-project
AArch64: Reenable CompleteModel for A53, A57 and Kryo models
The fixes in r262393 completed them as well. llvm-svn: 262408
This commit is contained in:
parent
7071c5fd64
commit
37d884fdf4
|
@ -26,7 +26,7 @@ def CortexA53Model : SchedMachineModel {
|
|||
let MispredictPenalty = 9; // Based on "Cortex-A53 Software Optimisation
|
||||
// Specification - Instruction Timings"
|
||||
// v 1.0 Spreadsheet
|
||||
let CompleteModel = 0;
|
||||
let CompleteModel = 1;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ def CortexA57Model : SchedMachineModel {
|
|||
// Enable partial & runtime unrolling. The magic number is chosen based on
|
||||
// experiments and benchmarking data.
|
||||
let LoopMicroOpBufferSize = 16;
|
||||
let CompleteModel = 0;
|
||||
let CompleteModel = 1;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -26,7 +26,7 @@ def KryoModel : SchedMachineModel {
|
|||
// Enable partial & runtime unrolling. The magic number is chosen based on
|
||||
// experiments and benchmarking data.
|
||||
let LoopMicroOpBufferSize = 16;
|
||||
let CompleteModel = 0;
|
||||
let CompleteModel = 1;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
Loading…
Reference in New Issue