diff options
| author | tgrogers <[email protected]> | 2019-08-30 20:17:01 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2019-08-30 20:17:01 -0400 |
| commit | 7fbb56d988998d7dc421d949886b5edbcc2fd961 (patch) | |
| tree | 713f44644f2d0eb3187b2db15c4724ca2d5174b8 /src/gpgpu-sim/gpu-sim.h | |
| parent | f237486cce3852b3416188f2a9e18eb8e5393f5e (diff) | |
Making the max cycles/inst counters 64 bits
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h index 76c7a06..fba770d 100644 --- a/src/gpgpu-sim/gpu-sim.h +++ b/src/gpgpu-sim/gpu-sim.h @@ -368,8 +368,8 @@ private: double l2_period; // GPGPU-Sim timing model options - unsigned gpu_max_cycle_opt; - unsigned gpu_max_insn_opt; + unsigned long long gpu_max_cycle_opt; + unsigned long long gpu_max_insn_opt; unsigned gpu_max_cta_opt; char *gpgpu_runtime_stat; bool gpgpu_flush_l1_cache; |
