configs: Fix apu_se.py CPU type checks (#651)

The current checks do not work. Correct the CPU type names

Change-Id: I81778873df0567c4a8dabbbe659c4c7a39326f98
This commit is contained in:
Matthew Poremba
2023-12-04 19:14:46 -08:00
committed by GitHub
parent 569e21f798
commit f00d7f70a4
2 changed files with 13 additions and 16 deletions

View File

@@ -129,7 +129,7 @@ class CPCntrl(CorePair_Controller, CntrlBase):
self.sequencer1.is_cpu_sequencer = True
self.issue_latency = options.cpu_to_dir_latency
self.send_evictions = send_evicts(options)
self.send_evictions = True if options.cpu_type == "X86O3CPU" else False
self.ruby_system = ruby_system