diff options
| author | sspenst <[email protected]> | 2016-08-04 13:09:41 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-08-04 13:09:41 -0700 |
| commit | feda07a5e0053ef2f2bfa382f5ba9a7a0b6c6bf5 (patch) | |
| tree | 22be33d4b51a6d04dd32aac7ea8b199f213e0f17 /src/cuda-sim/ptx.l | |
| parent | e08fc0294fe919a198477b771a414c5102430188 (diff) | |
A thread executing BSMAD is now able to access information from all threads in its warp
Diffstat (limited to 'src/cuda-sim/ptx.l')
| -rw-r--r-- | src/cuda-sim/ptx.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l index 69349a0..e0d7b9d 100644 --- a/src/cuda-sim/ptx.l +++ b/src/cuda-sim/ptx.l @@ -68,6 +68,9 @@ bra TC; ptx_lval.int_value = BRA_OP; return OPCODE; brx TC; ptx_lval.int_value = BRX_OP; return OPCODE; brev TC; ptx_lval.int_value = BREV_OP; return OPCODE; brkpt TC; ptx_lval.int_value = BRKPT_OP; return OPCODE; +bsmad TC; ptx_lval.int_value = BSMAD_OP; return OPCODE; +bsmul TC; ptx_lval.int_value = BSMUL_OP; return OPCODE; +buf TC; ptx_lval.int_value = BUF_OP; return OPCODE; call TC; BEGIN(NOT_OPCODE); ptx_lval.int_value = CALL_OP; return OPCODE; // blocking opcode token in case the callee has the same name as an opcode callp TC; BEGIN(NOT_OPCODE); ptx_lval.int_value = CALLP_OP; return OPCODE; clz TC; ptx_lval.int_value = CLZ_OP; return OPCODE; |
