diff options
| author | Andrew M. B. Boktor <[email protected]> | 2012-02-25 21:28:22 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:19:03 -0700 |
| commit | 76c69e28e08708319d39f79b01431e3d4f04dc8d (patch) | |
| tree | 7e04aaff6a11b4b58f37cc744d4145369575cd0c /src/abstract_hardware_model.h | |
| parent | f435e0aacbbbac5191f17dad51327a2da62fe14f (diff) | |
Fixing upper bound on threads/SM
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 11518]
Diffstat (limited to 'src/abstract_hardware_model.h')
| -rw-r--r-- | src/abstract_hardware_model.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h index 1be293d..6c2b190 100644 --- a/src/abstract_hardware_model.h +++ b/src/abstract_hardware_model.h @@ -270,7 +270,7 @@ protected: #define SHARED_MEM_SIZE_MAX (64*1024) #define LOCAL_MEM_SIZE_MAX (16*1024) #define MAX_STREAMING_MULTIPROCESSORS 64 -#define MAX_THREAD_PER_SM 1024 +#define MAX_THREAD_PER_SM 2048 #define TOTAL_LOCAL_MEM_PER_SM (MAX_THREAD_PER_SM*LOCAL_MEM_SIZE_MAX) #define TOTAL_SHARED_MEM (MAX_STREAMING_MULTIPROCESSORS*SHARED_MEM_SIZE_MAX) #define TOTAL_LOCAL_MEM (MAX_STREAMING_MULTIPROCESSORS*MAX_THREAD_PER_SM*LOCAL_MEM_SIZE_MAX) |
