Skip to content

Commit

Permalink
Disable FPU model optimizations (temporarily)
Browse files Browse the repository at this point in the history
  • Loading branch information
abejgonzalez committed Dec 21, 2024
1 parent dd2ce08 commit 2507ac9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generators/firechip/chip/src/main/scala/FireSim.scala
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ class FireSim(implicit val p: Parameters) extends RawModule with HasHarnessInsta
if (p(FireSimMultiCycleRegFile)) ls.totalTiles.values.map {
case r: RocketTile => {
annotate(MemModelAnnotation(r.module.core.rocketImpl.rf.rf))
r.module.fpuOpt.foreach(fpu => annotate(MemModelAnnotation(fpu.fpuImpl.regfile)))
// TODO: currently, fpu mem. model optimizations are broken with model multi-threading so disable for now
//r.module.fpuOpt.foreach(fpu => annotate(MemModelAnnotation(fpu.fpuImpl.regfile)))
}
case b: BoomTile => {
val core = b.module.core
Expand Down

0 comments on commit 2507ac9

Please sign in to comment.