diff options
| author | Aaron M Barnes <[email protected]> | 2022-02-18 10:14:39 -0500 |
|---|---|---|
| committer | Aaron M Barnes <[email protected]> | 2022-02-18 10:14:39 -0500 |
| commit | 8f71be8754506aa37ad905c2958915a1256375c3 (patch) | |
| tree | 99611378b2d5127e93568b61d46844e879d326d0 /src/gpgpu-sim/gpu-sim.cc | |
| parent | 43198e9c34c4ac2c215c90f9b9768b737b23e429 (diff) | |
update max_concurrent kernel based on compute capability
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.cc')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc index 8284ad3..5af244b 100644 --- a/src/gpgpu-sim/gpu-sim.cc +++ b/src/gpgpu-sim/gpu-sim.cc @@ -701,7 +701,8 @@ void gpgpu_sim_config::reg_options(option_parser_t opp) { "500.0:2000.0:2000.0:2000.0"); option_parser_register( opp, "-gpgpu_max_concurrent_kernel", OPT_INT32, &max_concurrent_kernel, - "maximum kernels that can run concurrently on GPU", "8"); + "maximum kernels that can run concurrently on GPU, set this value " + "according to max resident grids for your compute capability", "32"); option_parser_register( opp, "-gpgpu_cflog_interval", OPT_INT32, &gpgpu_cflog_interval, "Interval between each snapshot in control flow logger", "0"); |
