diff options
| author | Wilson Fung <[email protected]> | 2012-10-30 22:43:44 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:49:21 -0700 |
| commit | d0b377ded0c804580a78f2327b84e6e2ea1ee069 (patch) | |
| tree | cc14f8b6a599b86e5da351c66eee5ab40962da56 /src/abstract_hardware_model.h | |
| parent | 3863ad27814eefe2d26b2eba7eb8a4ab65bef5a4 (diff) | |
Fixed the shared memory bank conflict model for GTX 480 and Tesla C2050. Now the two configs will feature 32-bank shared memory with a more flexible broadcast mechanism.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 14509]
Diffstat (limited to 'src/abstract_hardware_model.h')
| -rw-r--r-- | src/abstract_hardware_model.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h index 183123b..9681a67 100644 --- a/src/abstract_hardware_model.h +++ b/src/abstract_hardware_model.h @@ -186,6 +186,7 @@ struct core_config { { m_valid = false; num_shmem_bank=16; + shmem_limited_broadcast = false; } virtual void init() = 0; @@ -196,6 +197,7 @@ struct core_config { int gpgpu_coalesce_arch; // shared memory bank conflict checking parameters + bool shmem_limited_broadcast; static const address_type WORD_SIZE=4; unsigned num_shmem_bank; unsigned shmem_bank_func(address_type addr) const |
