diff options
| author | Tor Aamodt <[email protected]> | 2010-10-03 18:12:23 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-10-03 18:12:23 -0800 |
| commit | dda377ce2854d0e65f7f6531f6eb6b398bbbf888 (patch) | |
| tree | d379a0fbfa66f71ec2e9ea63fc6c1dfe21bb271b /src/gpgpu-sim | |
| parent | f97c52bbaed425f5ada9758c248c9a2c2b9853dd (diff) | |
1. integrating Inder's changes
2. edit to 3dfd to enable execution on Quadro
3. update script to not pass device directly to 3dfd on command line (which it does not support)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7810]
Diffstat (limited to 'src/gpgpu-sim')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc index 563dbae..bfa4fda 100644 --- a/src/gpgpu-sim/gpu-sim.cc +++ b/src/gpgpu-sim/gpu-sim.cc @@ -188,6 +188,7 @@ int g_ptx_inst_debug_thread_uid; int g_ptx_convert_to_ptxplus; int g_ptx_save_converted_ptxplus; +unsigned g_ptx_force_max_capability; void visualizer_options(option_parser_t opp); @@ -417,6 +418,10 @@ void gpgpu_sim::reg_options(option_parser_t opp) &g_ptx_save_converted_ptxplus, "Saved converted ptxplus to a file", "0"); + option_parser_register(opp, "-gpgpu_ptx_force_max_capability", OPT_UINT32, + &g_ptx_force_max_capability, + "Force maximum compute capability", + "0"); option_parser_register(opp, "-gpgpu_operand_collector", OPT_BOOL, &m_shader_config->gpgpu_operand_collector, "Enable operand collector model (default = off)", "0"); |
