-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cpu-o3: align amo operation's latency (#300)
The atomic instructions in XS RTL are implemented using a state machine (requiring 10+ cycles), while the previous implementation in gem5 assigned a fixed latency to atomic instructions (previously set to 2 cycles). The latency configurations between the two implementations were mismatched. This PR aligns the atomic instruction latency in gem5 with the RTL implementation (currently set to 13 cycles). The latency is obtained through a microbenchmark test using amo instructions. Change-Id: I4cfc42397edc6234b5013a634806bd48a479c49c
- Loading branch information
Showing
4 changed files
with
21 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters