----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: http://reviews.gem5.org/r/1954/ -----------------------------------------------------------
Review request for Default. Repository: gem5 Description ------- Changeset 9825:5eeb3f6704eb --------------------------- mem: Use STL deque in favour of list for DRAM queues This patch changes the data structure used for the DRAM read, write and response queues from an STL list to deque. This optimisation is based on the observation that the size is small (and fixed), and that the structures are frequently iterated over in a linear fashion. Diffs ----- src/mem/simple_dram.hh 3b3b94536547 src/mem/simple_dram.cc 3b3b94536547 Diff: http://reviews.gem5.org/r/1954/diff/ Testing ------- All regressions pass Thanks, Andreas Hansson _______________________________________________ gem5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/gem5-dev
