Commit 6c373d6659f2b628fe038bee1e9b901b704f2342

Authored by Sathya Narayanan
1 parent 9b5553a5a4
Exists in master

Correct code for memory acess time

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

memory_access_time.c View file @ 6c373d6
... ... @@ -32,7 +32,7 @@
32 32 {
33 33 int i, j;
34 34  
35   - for (j = 4; j <= 32; j*=2) {
  35 + for (j = 4; j <= 256; j*=2) {
36 36 printf("Stride size: %u\n", j);
37 37 for (i = 1024; i <= 32 * MB; i*=2) {
38 38 u64 access_time = access_time_1(i, j);