diff options
| author | Tor Aamodt <[email protected]> | 2010-07-17 10:19:14 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-17 10:19:14 -0800 |
| commit | 9b43d5685c269331ea6d15fe3ed0dade063a798a (patch) | |
| tree | f14fa0082783744e7d13e883cd3f1620377dc733 /src/cuda-sim/ptx_sim.cc | |
| parent | ca7e2e58e7fd932d67c6d28477a5c15ed3b156b0 (diff) | |
- add support for ld/st with generic addresses
- add support for parsing cache operators (still need to pass to timing model)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6868]
Diffstat (limited to 'src/cuda-sim/ptx_sim.cc')
| -rw-r--r-- | src/cuda-sim/ptx_sim.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx_sim.cc b/src/cuda-sim/ptx_sim.cc index 6a62783..d551c43 100644 --- a/src/cuda-sim/ptx_sim.cc +++ b/src/cuda-sim/ptx_sim.cc @@ -243,6 +243,11 @@ ptx_thread_info::ptx_thread_info() m_last_was_call = false; } +const ptx_version &ptx_thread_info::get_ptx_version() const +{ + return m_func_info->get_ptx_version(); +} + extern unsigned long long gpu_sim_cycle; void ptx_thread_info::set_done() |
