diff options
| author | Tor Aamodt <[email protected]> | 2020-07-03 19:42:18 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-07-03 19:42:18 -0700 |
| commit | 9d3caa1cb2c70a3be186d4704ecab0fe13277516 (patch) | |
| tree | a9f379ae6ff144e8f3eccd3d510a36c2c0983edd /src/cuda-sim/ptx_ir.cc | |
| parent | 708a249f854cedb08b0b5e494f45f2371f0525a6 (diff) | |
| parent | a8f98c3d111c9238ad79908e690b22c5e43f1522 (diff) | |
Merge pull request #186 from lucylufei/francois-update
Add activemask, bfind, vmin, vmax implementations
Diffstat (limited to 'src/cuda-sim/ptx_ir.cc')
| -rw-r--r-- | src/cuda-sim/ptx_ir.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cuda-sim/ptx_ir.cc b/src/cuda-sim/ptx_ir.cc index aa1c25a..e5b5fb7 100644 --- a/src/cuda-sim/ptx_ir.cc +++ b/src/cuda-sim/ptx_ir.cc @@ -1147,7 +1147,8 @@ static std::list<operand_info> check_operands( const std::list<operand_info> &operands, gpgpu_context *ctx) { static int g_warn_literal_operands_two_type_inst; if ((opcode == CVT_OP) || (opcode == SET_OP) || (opcode == SLCT_OP) || - (opcode == TEX_OP) || (opcode == MMA_OP) || (opcode == DP4A_OP)) { + (opcode == TEX_OP) || (opcode == MMA_OP) || (opcode == DP4A_OP) || + (opcode == VMIN_OP) || (opcode == VMAX_OP) ) { // just make sure these do not have have const operands... if (!g_warn_literal_operands_two_type_inst) { std::list<operand_info>::const_iterator o; |
