diff options
| author | Inderpreet Singh <[email protected]> | 2012-05-07 01:19:35 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:19:37 -0700 |
| commit | 5b4b678642d36eac16d637886c7f44d0e2e74ccb (patch) | |
| tree | c4aebf1be3156f571988eb6c16dd17396d3b6a41 /src/gpgpusim_entrypoint.cc | |
| parent | 4505c33872fc5c665bee0060be1fdbfa8c77fdb6 (diff) | |
Integrated in CL12342 from coherence branch; fix for bug #160
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12343]
Diffstat (limited to 'src/gpgpusim_entrypoint.cc')
| -rw-r--r-- | src/gpgpusim_entrypoint.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gpgpusim_entrypoint.cc b/src/gpgpusim_entrypoint.cc index 325bac6..76c63b5 100644 --- a/src/gpgpusim_entrypoint.cc +++ b/src/gpgpusim_entrypoint.cc @@ -68,10 +68,11 @@ void *gpgpu_sim_thread_sequential(void*) if( g_the_gpu->get_more_cta_left() ) { done = false; g_the_gpu->init(); - while( g_the_gpu->active() ) + while( g_the_gpu->active() ) { g_the_gpu->cycle(); + g_the_gpu->deadlock_check(); + } g_the_gpu->print_stats(); - g_the_gpu->deadlock_check(); print_simulation_time(); } sem_post(&g_sim_signal_finish); @@ -120,8 +121,8 @@ void *gpgpu_sim_thread_concurrent(void*) if( g_the_gpu->active() ) { g_the_gpu->cycle(); sim_cycles = true; + g_the_gpu->deadlock_check(); } - g_the_gpu->deadlock_check(); active = g_the_gpu->active() || !g_stream_manager->empty(); } while( active ); if(g_debug_execution >= 3) { |
