diff options
| author | Mahmoud <[email protected]> | 2018-10-11 12:59:39 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2018-10-11 12:59:39 -0400 |
| commit | beeafb66d2e2bb441ab1eacade75322a72961be0 (patch) | |
| tree | 04e71c63714464d17105f8ae2563a99365d821f8 /src/gpgpu-sim/gpu-cache.h | |
| parent | a6b9171a158d29d5d1ad415d087f483feb1af965 (diff) | |
| parent | 8193d93d0e154206c21ef9da3f2214e2f8409dce (diff) | |
Merge branch 'dev-purdue-integration' of https://github.rcac.purdue.edu/abdallm/gpgpu-sim_distribution into dev-purdue-integration
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-cache.h b/src/gpgpu-sim/gpu-cache.h index cd98945..d1cba78 100644 --- a/src/gpgpu-sim/gpu-cache.h +++ b/src/gpgpu-sim/gpu-cache.h @@ -224,7 +224,7 @@ struct line_cache_block: public cache_block_t { return m_readable; } virtual void print_status() { - printf("m_block_addr is %u, status = %u\n", m_block_addr, m_status); + printf("m_block_addr is %llu, status = %u\n", m_block_addr, m_status); } @@ -416,7 +416,7 @@ struct sector_cache_block : public cache_block_t { } virtual void print_status() { - printf("m_block_addr is %u, status = %u %u %u %u\n", m_block_addr, m_status[0], m_status[1], m_status[2], m_status[3]); + printf("m_block_addr is %llu, status = %u %u %u %u\n", m_block_addr, m_status[0], m_status[1], m_status[2], m_status[3]); } |
