summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim
diff options
context:
space:
mode:
authorWilson Fung <[email protected]>2012-01-17 00:23:46 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:19:02 -0700
commitf0bfd72df3f664c2b44595d1a393ec6b535181c0 (patch)
tree8e68d26b14972901b17c84782a2f7f3277de4fdf /src/gpgpu-sim
parent5e46e5ce42b9c88c9ae3d8fb7ab9df4f0f2e7c97 (diff)
Fixing bug 126. Now DXTC runs to completion by not giving correct result (expected). The key is that the missing function is now in place. Also removed reference to print_shader_cycle_distro() (this is deprecated by AerialVision).
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 11346]
Diffstat (limited to 'src/gpgpu-sim')
-rw-r--r--src/gpgpu-sim/gpu-sim.cc2
-rw-r--r--src/gpgpu-sim/gpu-sim.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc
index ddee6eb..6b448ab 100644
--- a/src/gpgpu-sim/gpu-sim.cc
+++ b/src/gpgpu-sim/gpu-sim.cc
@@ -904,8 +904,6 @@ void gpgpu_sim::cycle()
}
if (m_config.gpu_runtime_stat_flag & GPU_RSTAT_SHD_INFO)
shader_print_runtime_stat( stdout );
- if (m_config.gpu_runtime_stat_flag & GPU_RSTAT_WARP_DIS)
- print_shader_cycle_distro( stdout );
if (m_config.gpu_runtime_stat_flag & GPU_RSTAT_L1MISS)
shader_print_l1_miss_stat( stdout );
}
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h
index ab5e8bc..7c14594 100644
--- a/src/gpgpu-sim/gpu-sim.h
+++ b/src/gpgpu-sim/gpu-sim.h
@@ -267,7 +267,6 @@ private:
void shader_print_runtime_stat( FILE *fout );
void shader_print_l1_miss_stat( FILE *fout ) const;
void visualizer_printstat();
- void print_shader_cycle_distro( FILE *fout ) const;
void gpgpu_debug();