summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-sim.cc
diff options
context:
space:
mode:
authorNick <[email protected]>2019-09-13 08:02:14 -0400
committerNick <[email protected]>2019-09-13 08:02:14 -0400
commitf2aa87a330dc68207088bf60828376f9fa454d72 (patch)
treec329fe2a9b754de23acc8dc99e9d3e5d44139e1d /src/gpgpu-sim/gpu-sim.cc
parenta34a4baad45a40840308167307c79371b4024a9d (diff)
Seems like multiple passes for reformatting comments
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.cc')
-rw-r--r--src/gpgpu-sim/gpu-sim.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc
index e44ab95..485d42e 100644
--- a/src/gpgpu-sim/gpu-sim.cc
+++ b/src/gpgpu-sim/gpu-sim.cc
@@ -1224,7 +1224,7 @@ void gpgpu_sim::gpu_print_stat() {
partiton_reqs_in_parallel_util_total) /
(gpu_sim_cycle_parition_util + gpu_tot_sim_cycle_parition_util));
// printf("partiton_replys_in_parallel = %lld\n",
- // partiton_replys_in_parallel); printf("partiton_replys_in_parallel_total =
+ // partiton_replys_in_parallel); printf("partiton_replys_in_parallel_total =
// %lld\n", partiton_replys_in_parallel_total );
printf("L2_BW = %12.4f GB/Sec\n",
((float)(partiton_replys_in_parallel * 32) /
@@ -1735,8 +1735,8 @@ void gpgpu_sim::cycle() {
m_power_stats->pwr_mem_stat->l2_cache_stats[CURRENT_STAT_IDX].clear();
for (unsigned i = 0; i < m_memory_config->m_n_mem_sub_partition; i++) {
// move memory request from interconnect into memory partition (if not
- // backed up) Note:This needs to be called in DRAM clock domain if there is
- // no L2 cache in the system In the worst case, we may need to push
+ // backed up) Note:This needs to be called in DRAM clock domain if there
+ // is no L2 cache in the system In the worst case, we may need to push
// SECTOR_CHUNCK_SIZE requests, so ensure you have enough buffer for them
if (m_memory_sub_partition[i]->full(SECTOR_CHUNCK_SIZE)) {
gpu_stall_dramfull++;