diff options
| author | Tim Rogers <[email protected]> | 2011-10-27 16:39:10 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:18:23 -0700 |
| commit | b4dcac15e64b9007930824409ca3ed901da37ef3 (patch) | |
| tree | 7742ecd2dfd90b61c68658254feab51a3a3598e5 /src/gpgpu-sim/mem_fetch.cc | |
| parent | 332f225a945acd9c884dc0fb7cb993e6865dc415 (diff) | |
Fixing the atomics I broke with the insn count fix
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 10754]
Diffstat (limited to 'src/gpgpu-sim/mem_fetch.cc')
| -rw-r--r-- | src/gpgpu-sim/mem_fetch.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/mem_fetch.cc b/src/gpgpu-sim/mem_fetch.cc index a09c071..abf1d4e 100644 --- a/src/gpgpu-sim/mem_fetch.cc +++ b/src/gpgpu-sim/mem_fetch.cc @@ -117,7 +117,7 @@ bool mem_fetch::isatomic() const void mem_fetch::do_atomic() { - m_inst.do_atomic(); + m_inst.do_atomic( m_access.get_warp_mask() ); } bool mem_fetch::istexture() const |
