-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Svpbmt): support WMO memory access and outstanding of NC #3900
base: master
Are you sure you want to change the base?
Conversation
[Generated by IPC robot]
master branch:
|
val ioBuffer = Module(new IOBuffer) // uncache io buffer | ||
val ncBuffer = Module(new NCBuffer) // uncache nc buffer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it necessary to use two large buffers to save MMIO access and uncache access separately?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not necessary. Merging them into a single buffer requires considering the characteristics that MMIO needs to be serialized while NC can be parallelized, which is one of the next optimization points.
[Generated by IPC robot]
master branch:
|
No description provided.