summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMahmoud <[email protected]>2019-07-15 17:19:32 -0400
committerMahmoud <[email protected]>2019-07-15 17:19:32 -0400
commit0a8eb0f68d4ad22a9be6fc1445edf56e03829d7e (patch)
treef02bd285d167e7070236594b98f3ec5b76a9261f
parent7e65afd701b62111b0c28a98fabad0319993cb1d (diff)
parentba7145d18dd65391e9510664d26c963fcaab20ee (diff)
Merge branch 'dev' of https://github.com/mkhairy/gpgpu-sim-private into dev-private
-rw-r--r--src/abstract_hardware_model.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h
index 64bbaa2..27a1ba6 100644
--- a/src/abstract_hardware_model.h
+++ b/src/abstract_hardware_model.h
@@ -438,9 +438,9 @@ protected:
#define GLOBAL_HEAP_START 0xC0000000
// start allocating from this address (lower values used for allocating globals in .ptx file)
-#define SHARED_MEM_SIZE_MAX (64*1024)
-#define LOCAL_MEM_SIZE_MAX (8*1024)
-#define MAX_STREAMING_MULTIPROCESSORS 64
+#define SHARED_MEM_SIZE_MAX (96*1024)
+#define LOCAL_MEM_SIZE_MAX (16*1024)
+#define MAX_STREAMING_MULTIPROCESSORS 80 //scale it to Volta
#define MAX_THREAD_PER_SM 2048
#define MAX_WARP_PER_SM 64
#define TOTAL_LOCAL_MEM_PER_SM (MAX_THREAD_PER_SM*LOCAL_MEM_SIZE_MAX)