summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. B. Boktor <[email protected]>2011-10-05 12:56:54 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:18:23 -0700
commit7d16063813977f8aab4e01ff754c046eb12b6262 (patch)
tree8671a53cba898cdd0ce49dd128149d87adf5d133
parent6f64b0527dd7f8be12c17ab2b73e7bc5d9c8def8 (diff)
Build fix,
I believe someone has added -gpgpu_max_insn_issue_per_warp to the configuration but didn't add it to the configuration struct. [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 10527]
-rw-r--r--src/abstract_hardware_model.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h
index 9ca747e..69436a3 100644
--- a/src/abstract_hardware_model.h
+++ b/src/abstract_hardware_model.h
@@ -228,6 +228,8 @@ struct core_config {
// texture and constant cache line sizes (used to determine number of memory accesses)
unsigned gpgpu_cache_texl1_linesize;
unsigned gpgpu_cache_constl1_linesize;
+
+ unsigned gpgpu_max_insn_issue_per_warp;
};
class core_t {