diff options
| author | Ahmad Alawneh <[email protected]> | 2025-04-17 16:58:59 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-17 20:58:59 +0000 |
| commit | 8124cbbcd154a54bda86360e2a566d48940a0caa (patch) | |
| tree | ff901fb269a907c703c73d990d0066bda3a133c4 /src/gpgpu-sim/shader.h | |
| parent | 363fe2cf6692b85729215345446455f9e2648786 (diff) | |
change function name (#113)
Diffstat (limited to 'src/gpgpu-sim/shader.h')
| -rw-r--r-- | src/gpgpu-sim/shader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.h b/src/gpgpu-sim/shader.h index bef1ae3..b90ce2f 100644 --- a/src/gpgpu-sim/shader.h +++ b/src/gpgpu-sim/shader.h @@ -189,7 +189,7 @@ class shd_warp_t { m_active_threads.reset(lane); n_completed++; } - bool test_completed(unsigned lane) {return m_active_threads.test(lane);} + bool test_active(unsigned lane) {return m_active_threads.test(lane);} void set_last_fetch(unsigned long long sim_cycle) { m_last_fetch = sim_cycle; |
