Initialize in-flight memory request counters

# Explain what has been changed

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
This commit is contained in:
Thanh C. Tran
2017-03-08 00:19:36 +01:00
parent ee006952de
commit 37435b6285

View File

@@ -25,6 +25,7 @@ public:
{
memrequestcounter.emplace(Thread(threadID), 0);
memoryIntensity.emplace(Thread(threadID), 0);
inFlightMemRequestCounter.emplace(Thread(threadID), 0);
}
SC_THREAD(batchScheduler);
}