summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-sim.h
diff options
context:
space:
mode:
authorWilson Fung <[email protected]>2013-01-25 21:34:30 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:49:24 -0700
commitb3de117ec61c3b59dc386562dc821fed6627e38b (patch)
tree14cee447af99a371ae3019bdfef3491d54a34595 /src/gpgpu-sim/gpu-sim.h
parent8c087fa6baa2268a2675c3fec772f2bd696f080e (diff)
Added kernel name and launch uids to the stat printout to simplify per-kernel stat binning.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 15109]
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
-rw-r--r--src/gpgpu-sim/gpu-sim.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h
index f8c2e2e..93b7b0c 100644
--- a/src/gpgpu-sim/gpu-sim.h
+++ b/src/gpgpu-sim/gpu-sim.h
@@ -457,7 +457,8 @@ private:
unsigned long long gpu_tot_issued_cta;
unsigned long long last_gpu_sim_insn;
-
+ std::vector<std::string> m_executed_kernel_names; //< names of kernel for stat printout
+ std::vector<unsigned> m_executed_kernel_uids; //< uids of kernel launches for stat printout
public: