Skip to content

Commit

Permalink
sim_param_stats.c: pte_rw_latency is a part of base DRAM model
Browse files Browse the repository at this point in the history
  • Loading branch information
gkothar1 committed Jun 6, 2020
1 parent 87e85cd commit a24cb36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/riscvsim/sim_params_stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,6 @@ sim_params_print(const SimParams *p)

fprintf(stderr, "\n");
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "tlb_size", p->tlb_size);
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "pte_rw_latency",
p->pte_rw_latency);
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %lu MB\n", "guest_ram_size", p->guest_ram_size);
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %s\n", "mem_model_type",
mem_model_type_str[p->mem_model_type]);
Expand All @@ -419,6 +417,8 @@ sim_params_print(const SimParams *p)
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %u\n",
"mem_access_latency",
p->mem_access_latency);
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "pte_rw_latency",
p->pte_rw_latency);
break;
}
case MEM_MODEL_DRAMSIM:
Expand Down

0 comments on commit a24cb36

Please sign in to comment.