summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx.l
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2020-07-03 19:42:18 -0700
committerGitHub <[email protected]>2020-07-03 19:42:18 -0700
commit9d3caa1cb2c70a3be186d4704ecab0fe13277516 (patch)
treea9f379ae6ff144e8f3eccd3d510a36c2c0983edd /src/cuda-sim/ptx.l
parent708a249f854cedb08b0b5e494f45f2371f0525a6 (diff)
parenta8f98c3d111c9238ad79908e690b22c5e43f1522 (diff)
Merge pull request #186 from lucylufei/francois-update
Add activemask, bfind, vmin, vmax implementations
Diffstat (limited to 'src/cuda-sim/ptx.l')
-rw-r--r--src/cuda-sim/ptx.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l
index 2dadda4..6754045 100644
--- a/src/cuda-sim/ptx.l
+++ b/src/cuda-sim/ptx.l
@@ -158,6 +158,7 @@ vshl TC; yylval->int_value = VSHL_OP; return OPCODE;
vshr TC; yylval->int_value = VSHR_OP; return OPCODE;
vsub TC; yylval->int_value = VSUB_OP; return OPCODE;
vote TC; yylval->int_value = VOTE_OP; return OPCODE;
+activemask TC; yylval->int_value = ACTIVEMASK_OP; return OPCODE;
xor TC; yylval->int_value = XOR_OP; return OPCODE;
nop TC; yylval->int_value = NOP_OP; return OPCODE;
break TC; yylval->int_value = BREAK_OP; return OPCODE;