summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_ir.h
diff options
context:
space:
mode:
authorWilson Fung <[email protected]>2012-09-06 02:31:24 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:48:54 -0700
commit3072e5b58e2e18f2691ab1b4afda505f5ccaf56c (patch)
tree72a9c2e9d3677fe36675178394147ef34ce58628 /src/cuda-sim/ptx_ir.h
parentdb8175181856355bd6d376b77733f85f06f852d6 (diff)
Added implementation of vote.ballot (passing directed test). Added popc (not tested). Reducing number of iterations for radixSortThrust for regression.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13993]
Diffstat (limited to 'src/cuda-sim/ptx_ir.h')
-rw-r--r--src/cuda-sim/ptx_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/ptx_ir.h b/src/cuda-sim/ptx_ir.h
index 4078e6b..09c9ade 100644
--- a/src/cuda-sim/ptx_ir.h
+++ b/src/cuda-sim/ptx_ir.h
@@ -916,7 +916,7 @@ public:
unsigned rounding_mode() const { return m_rounding_mode;}
unsigned saturation_mode() const { return m_saturation_mode;}
unsigned dimension() const { return m_geom_spec;}
- enum vote_mode_t { vote_any, vote_all, vote_uni };
+ enum vote_mode_t { vote_any, vote_all, vote_uni, vote_ballot };
enum vote_mode_t vote_mode() const { return m_vote_mode; }
int membar_level() const { return m_membar_level; }