diff options
| author | sspenst <[email protected]> | 2016-08-24 15:24:19 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-08-24 15:24:19 -0700 |
| commit | 68336f112117bcef5b943650819a6764e9ebf4ce (patch) | |
| tree | ba85c9a8544d15a4055b991630d794e1cf668e42 /src/cuda-sim/ptx_ir.h | |
| parent | 2683b8bd7ba9950e0aa174915ef9ff64e0a20421 (diff) | |
Added shfl instruction
Diffstat (limited to 'src/cuda-sim/ptx_ir.h')
| -rw-r--r-- | src/cuda-sim/ptx_ir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx_ir.h b/src/cuda-sim/ptx_ir.h index 601a13d..0abbc83 100644 --- a/src/cuda-sim/ptx_ir.h +++ b/src/cuda-sim/ptx_ir.h @@ -993,6 +993,7 @@ public: unsigned saturation_mode() const { return m_saturation_mode;} unsigned dimension() const { return m_geom_spec;} unsigned barrier_op() const {return m_barrier_op;} + unsigned shfl_op() const {return m_shfl_op;} enum vote_mode_t { vote_any, vote_all, vote_uni, vote_ballot }; enum vote_mode_t vote_mode() const { return m_vote_mode; } @@ -1058,6 +1059,7 @@ private: unsigned m_compare_op; unsigned m_saturation_mode; unsigned m_barrier_op; + unsigned m_shfl_op; std::list<int> m_scalar_type; memory_space_t m_space_spec; |
