diff options
| author | gpgpu-sim <[email protected]> | 2016-09-06 06:43:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-09-06 06:43:14 -0700 |
| commit | 3e9c0b4308ad32f381dc90f7763df46fa9ba721c (patch) | |
| tree | d77c8320f986a1c64d2018a7e50d09f8e4dd6a40 /src/cuda-sim/ptx_ir.h | |
| parent | bab2a234abfadc50cb14dadb01c10595ce6ad1ef (diff) | |
| parent | 0afe825c212560c3b473366d005a50c2568cad1a (diff) | |
Merge pull request #30 from sspenst/dev
shfl instruction implemented
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 55b01fd..9ad1571 100644 --- a/src/cuda-sim/ptx_ir.h +++ b/src/cuda-sim/ptx_ir.h @@ -1003,6 +1003,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; } @@ -1068,6 +1069,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; |
