summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rogers <[email protected]>2013-04-15 10:27:10 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:50:46 -0700
commit77cdf0905eea68880c7ef15b041e7ebfad301c2f (patch)
tree199e52b6d42ad208f16ca89bdfc43fa028ae02b0
parent45b0064ac97419d66e8c9583fff9d436f0bb9d82 (diff)
Removing the default printing of the dynamic warp distribution histogram at the end of every kenerl
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 15830]
-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