diff options
| author | sspenst <[email protected]> | 2016-08-05 10:16:29 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-08-05 10:16:29 -0700 |
| commit | 9a6b68c5b11fbdb239d25afe60e5135bc2afa88d (patch) | |
| tree | 3da088dd12534a858d414b14c2247aa381145d8d /src/cuda-sim/ptx.l | |
| parent | feda07a5e0053ef2f2bfa382f5ba9a7a0b6c6bf5 (diff) | |
bsmad gives the correct output in the small cases I have tried, still need to complete the TODOs noted in bsmad_impl
Diffstat (limited to 'src/cuda-sim/ptx.l')
| -rw-r--r-- | src/cuda-sim/ptx.l | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l index e0d7b9d..001ec04 100644 --- a/src/cuda-sim/ptx.l +++ b/src/cuda-sim/ptx.l @@ -69,8 +69,6 @@ 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; |
