dramninjasUMD

Results 21 comments of dramninjasUMD

But don't you think that will cause your "hit rate" to be artificially high since you're counting regular old transactions to open rows as row buffer hits?

Sorry, "regular old" doesn't mean "old" it just means like ... "plain". Anyways, what I'm trying to say is that in your scheme every single request will count as a...

I am not sure I understand your question. `poppedBusPacket` is not used before the `pop()` function. It starts out as null and then is passed to `commandQueue.pop(BusPacket **busPacket);` as a...

This error is the result of not setting LD_LIBRARY_PATH (or some other way to establish the loader path). I think if you just run this command before starting eclipse: `export...

I believe so -- this is just an implementation of a First Ready First Come First Serve scheduling policy where ready requests are pushed ahead of stalled requests if there...

I've actually removed this warning in a recent commit. The issue is that a real memory controller would be able to deal with sub-cache line/non cache aligned accesses which may...

This is just a double free error (calling `delete()` on something that has already been deleted). I have tested DRAMSim2 extensively with valgrind, so it is unlikely that this error...

This is the nature of memory corruption -- the program can run for a while before crashing. There's no mention in the log because the program itself is broken. I'd...

Write latency is not all that relevant and hard to define. From a system level, as soon as a memory controller accepts a write transaction, it is "done" (since the...

So you want to compute this on a per-transaction granularity? Are you interested in open page or closed page mode? Your formula looks OK to me but it doesn't include...