summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--src/gpgpu-sim/gpu-sim.cc2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index a281ebf..679ccb7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -21,6 +21,8 @@ Version 3.2.1+edits (development branch) versus 3.2.1
at kernel launch accordingly, if there is no alternative configurations
provided to the simulator it will use the default configurations with a
warning message display
+ - Removed a spamming print at kernel finish that dumped a warp issuing
+ histogram.
Version 3.2.1 versus 3.2.0
- Added kernel name and launch uids to performance statistics log.
- Added l2_cache_config class to extend baseline cache_config. Allows for
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc
index 5848d7c..2778077 100644
--- a/src/gpgpu-sim/gpu-sim.cc
+++ b/src/gpgpu-sim/gpu-sim.cc
@@ -877,7 +877,7 @@ void gpgpu_sim::gpu_print_stat()
printf( "gpu_total_sim_rate=%u\n", (unsigned)( ( gpu_tot_sim_insn + gpu_sim_insn ) / elapsed_time ) );
shader_print_l1_miss_stat( stdout );
- shader_print_scheduler_stat( stdout, true );
+ shader_print_scheduler_stat( stdout, false );
m_shader_stats->print(stdout);
#ifdef GPGPUSIM_POWER_MODEL