aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorspeverel <[email protected]>2016-06-01 11:26:47 -0700
committerspeverel <[email protected]>2016-06-01 11:26:47 -0700
commit041192e93f61bf27c7f7928d87afe5623cc08728 (patch)
treed979b93783754fc29821d20433a3331fb9246d2d /src
parent42115fbcbc6acd8c2faeb375d936c8a903889aaa (diff)
Added GTX750Ti config files. Also modified shader.h to support larger number of warps per CTA (64), which is necessary for Maxwell boards like the GTX750Ti.
Diffstat (limited to 'src')
-rw-r--r--src/gpgpu-sim/shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.h b/src/gpgpu-sim/shader.h
index 1aa468b..fe00770 100644
--- a/src/gpgpu-sim/shader.h
+++ b/src/gpgpu-sim/shader.h
@@ -267,7 +267,7 @@ private:
inline unsigned hw_tid_from_wid(unsigned wid, unsigned warp_size, unsigned i){return wid * warp_size + i;};
inline unsigned wid_from_hw_tid(unsigned tid, unsigned warp_size){return tid/warp_size;};
-const unsigned WARP_PER_CTA_MAX = 48;
+const unsigned WARP_PER_CTA_MAX = 64;
typedef std::bitset<WARP_PER_CTA_MAX> warp_set_t;
int register_bank(int regnum, int wid, unsigned num_banks, unsigned bank_warp_shift);