diff options
| author | Tim Rogers <[email protected]> | 2019-08-23 15:33:38 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-23 15:33:38 -0400 |
| commit | 0df569774615120c76fb5f139f8698175a722293 (patch) | |
| tree | b8a1ca8e57bffc08db5ed2378990ec53353af11e /src/gpgpu-sim/gpu-sim.h | |
| parent | 2f5b3332c9b9b3fa9fea43d61276bddb24aa7df2 (diff) | |
| parent | 963947b33c99143afbb477a6d897245e56695b0b (diff) | |
Merge pull request #26 from mkhairy/dev
Merging Mahmoud's CUTLASS support and correlation fixes
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h index 19e1eb3..76c7a06 100644 --- a/src/gpgpu-sim/gpu-sim.h +++ b/src/gpgpu-sim/gpu-sim.h @@ -293,9 +293,12 @@ class memory_config { unsigned write_high_watermark; unsigned write_low_watermark; bool m_perf_sim_memcpy; + bool simple_dram_model; + gpgpu_context* gpgpu_ctx; }; + extern bool g_interactive_debugger_enabled; class gpgpu_sim_config : public power_config, public gpgpu_functional_sim_config { @@ -482,6 +485,8 @@ public: int num_registers_per_block() const; int wrp_size() const; int shader_clock() const; + int max_cta_per_core() const; + int get_max_cta( const kernel_info_t &k ) const; const struct cudaDeviceProp *get_prop() const; enum divergence_support_t simd_model() const; |
