diff options
| author | aamir <[email protected]> | 2018-08-07 18:53:26 -0700 |
|---|---|---|
| committer | aamir <[email protected]> | 2018-08-07 18:53:26 -0700 |
| commit | 1c74dcc29176cb3f6464d9088511216ba0e12c8d (patch) | |
| tree | d48f38d358ca5132e70d1320cc098d029d1d6c20 /src/cuda-sim/ptx_ir.h | |
| parent | 3284c88967e76e9702190edbf60acb29ec2ebff0 (diff) | |
implemented prmt and started working on variable precision mul inst
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 cff312b..cb4556e 100644 --- a/src/cuda-sim/ptx_ir.h +++ b/src/cuda-sim/ptx_ir.h @@ -1086,6 +1086,7 @@ public: unsigned dimension() const { return m_geom_spec;} unsigned barrier_op() const {return m_barrier_op;} unsigned shfl_op() const {return m_shfl_op;} + unsigned prmt_op() const {return m_prmt_op;} enum vote_mode_t { vote_any, vote_all, vote_uni, vote_ballot }; enum vote_mode_t vote_mode() const { return m_vote_mode; } @@ -1156,6 +1157,7 @@ private: unsigned m_saturation_mode; unsigned m_barrier_op; unsigned m_shfl_op; + unsigned m_prmt_op; std::list<int> m_scalar_type; memory_space_t m_space_spec; |
