diff options
| author | sspenst <[email protected]> | 2016-07-04 16:25:11 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-07-04 16:25:11 -0700 |
| commit | 91b2afe09dbeb0fa1c5eb57cd4b416a5eb24bf60 (patch) | |
| tree | 7e9023a8f2c9f884234f02b8e717cc10d99e42c6 /src/cuda-sim/instructions.cc | |
| parent | 2683b8bd7ba9950e0aa174915ef9ff64e0a20421 (diff) | |
Initial SST recognition from PTX parser
Diffstat (limited to 'src/cuda-sim/instructions.cc')
| -rw-r--r-- | src/cuda-sim/instructions.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cuda-sim/instructions.cc b/src/cuda-sim/instructions.cc index 7b0f4fa..36aa29f 100644 --- a/src/cuda-sim/instructions.cc +++ b/src/cuda-sim/instructions.cc @@ -3734,6 +3734,11 @@ void sqrt_impl( const ptx_instruction *pI, ptx_thread_info *thread ) thread->set_operand_value(dst,d, i_type, thread, pI); } +void sst_impl( const ptx_instruction *pI, ptx_thread_info *thread ) +{ + printf("SST instruction found.\n"); +} + void ssy_impl( const ptx_instruction *pI, ptx_thread_info *thread ) { //printf("Execution Warning: unimplemented ssy instruction is treated as a nop\n"); |
