-
Notifications
You must be signed in to change notification settings - Fork 0
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
Hbm components #15
base: develop
Are you sure you want to change the base?
Hbm components #15
Conversation
While debugging, I suggest adding new components not in src/python/gem5/ so you don't have to recompile each time. Once you're done debugging, you can then move to src/python/gem5/ to contribute upstream (if you want) |
8, | ||
64, | ||
size=size, | ||
) |
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.
newline at end of file :)
1, | ||
64, | ||
size=size | ||
) |
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.
Newline at end of file
Also, great job @mahyarsamani for setting up the memory in the standard library to be so easy to extend! |
@@ -118,7 +118,7 @@ PacketQueue::schedSendTiming(PacketPtr pkt, Tick when) | |||
|
|||
// add a very basic sanity check on the port to ensure the | |||
// invisible buffer is not growing beyond reasonable limits | |||
if (!_disableSanityCheck && transmitList.size() > 128) { | |||
if (!_disableSanityCheck && transmitList.size() > 524288) { |
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.
Rather than making a code change, you can disable the sanity check in a configuration.
@@ -116,7 +116,7 @@ class CoherentXBar(BaseXBar): | |||
max_outstanding_snoops = Param.Int(512, "Max. outstanding snoops allowed") | |||
|
|||
# Maximum routing table size for sanity checks | |||
max_routing_table_size = Param.Int(512, "Max. routing table size") | |||
max_routing_table_size = Param.Int(524288, "Max. routing table size") |
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.
Why changing the code and not updating the config file?
Change-Id: I9320ee236f38785361d0be1642d2517e0bc28a5c
Change-Id: I4f300202fb19ccb4c16906252fc909cfe18be0e5
Change-Id: I675a32a5150c8c3a3ecc95a4280b9dc287548a07
Change-Id: I9bf07b4a94cbe6887b266a41477fd7d29d1e5f17
Change-Id: I915ea225a1a5507191acdeec226520f25d894df2
Change-Id: Idd9c3309131597e8ef00fd207b1727a775eddc35
Change-Id: I2e4ef23313f93e5eb5cd5304eaceea2e9c01fba1
No description provided.