-
Notifications
You must be signed in to change notification settings - Fork 103
Description
Hi,
I do not understand the short message stating
Note 2: Dual random read means that we are simultaneously performing ==
== two independent memory accesses at a time. In the case if ==
== the memory subsystem can't handle multiple outstanding ==
== requests, dual random read has the same timings as two ==
== single reads performed one after another. ==
Why the memory subsystem does not optimize two consecutive "simple" reads on random_read_test() while dual random read call gives the same latency for two readings together instead of one?
Just because zerobuffer[] reads from v1 and v2 indexes are lined one next each other? (at lines 342 and 343 in main.c)
I'm asking this since on a i5 laptop random read latency is only slightly (15%) better than dual random read latency.
Thanks