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/opcodes.h | |
| 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/opcodes.h')
| -rw-r--r-- | src/cuda-sim/opcodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cuda-sim/opcodes.h b/src/cuda-sim/opcodes.h index 871091c..aa133da 100644 --- a/src/cuda-sim/opcodes.h +++ b/src/cuda-sim/opcodes.h @@ -30,9 +30,11 @@ enum opcode_t { #define OP_DEF(OP,FUNC,STR,DST,CLASSIFICATION) OP, +#define OP_W_DEF(OP,FUNC,STR,DST,CLASSIFICATION) OP, #include "opcodes.def" - NUM_OPCODES + NUM_OPCODES #undef OP_DEF +#undef OP_W_DEF }; enum special_regs { |
