summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpgpu-sim')
-rw-r--r--src/gpgpu-sim/mem_latency_stat.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpgpu-sim/mem_latency_stat.cc b/src/gpgpu-sim/mem_latency_stat.cc
index 8fdbe06..c5452b9 100644
--- a/src/gpgpu-sim/mem_latency_stat.cc
+++ b/src/gpgpu-sim/mem_latency_stat.cc
@@ -231,7 +231,8 @@ void memory_stats_t::memlatstat_print( unsigned n_mem, unsigned gpu_mem_n_bk )
printf("averagemflatency = %lld \n", mf_total_lat/num_mfs);
printf("avg_icnt2mem_latency = %lld \n", tot_icnt2mem_latency/num_mfs);
if(tot_mrq_num)
- printf("avg_mrq_latency = %lld \n", tot_mrq_latency/tot_mrq_num);
+ printf("avg_mrq_latency = %lld \n", tot_mrq_latency/tot_mrq_num);
+
printf("avg_icnt2sh_latency = %lld \n", tot_icnt2sh_latency/num_mfs);
}
printf("mrq_lat_table:");