aboutsummaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/shader.cc
diff options
context:
space:
mode:
authorNick <[email protected]>2019-02-18 11:21:14 -0500
committerNick <[email protected]>2019-02-18 11:21:14 -0500
commit7baae0e937143e0acfc71382eb432bdc42d4ca41 (patch)
treebf524d98631a3b01a2addbb1fe25c3e0d8b0b5a6 /src/gpgpu-sim/shader.cc
parent4ed2d9e106d797eeaf5199100984dc7c658cdc1e (diff)
Fix spelling from adpative -> adaptive for volta cache config
Diffstat (limited to 'src/gpgpu-sim/shader.cc')
-rw-r--r--src/gpgpu-sim/shader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.cc b/src/gpgpu-sim/shader.cc
index 3db988b..2cecd0c 100644
--- a/src/gpgpu-sim/shader.cc
+++ b/src/gpgpu-sim/shader.cc
@@ -2949,7 +2949,7 @@ unsigned int shader_core_config::max_cta( const kernel_info_t &k ) const
abort();
}
- if(adpative_volta_cache_config && !k.volta_cache_config_set) {
+ if(adaptive_volta_cache_config && !k.volta_cache_config_set) {
//For Volta, we assign the remaining shared memory to L1 cache
//For more info, see https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#shared-memory-7-x
unsigned total_shmed = kernel_info->smem * result;