diff options
| author | Davit Grigoryan <[email protected]> | 2026-04-18 21:00:03 +0000 |
|---|---|---|
| committer | Davit Grigoryan <[email protected]> | 2026-04-18 21:00:03 +0000 |
| commit | 966b202df2441204386bad4d8bcd2c1d47aedd36 (patch) | |
| tree | e405f5b2de604385f2bed343e811b75611b6b41c /src/gpgpu-sim/gpu-sim.cc | |
| parent | ab201ce8cb84c780742dac71fc2d2996f2b9c775 (diff) | |
add more scheduling policies; update stats counters
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.cc')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc index dd3bba7..7b947fb 100644 --- a/src/gpgpu-sim/gpu-sim.cc +++ b/src/gpgpu-sim/gpu-sim.cc @@ -700,8 +700,9 @@ void shader_core_config::reg_options(class OptionParser *opp) { opp, "-gpgpu_co_issue_priority", OPT_UINT32, &gpgpu_co_issue_priority, "Co-issue scheduler: 0=greedy (utilization-max), 1=intra-first, " - "2=inter-first, 3=fewest-lanes, 4=same-PC (default 0).", - "0"); + "2=inter-first (matches pre-Change-4 behavior), 3=fewest-lanes, " + "4=same-PC (default 2).", + "2"); for (unsigned j = 0; j < SPECIALIZED_UNIT_NUM; ++j) { std::stringstream ss; |
