diff options
| author | Jonathan <[email protected]> | 2018-06-04 16:53:23 -0700 |
|---|---|---|
| committer | Jonathan <[email protected]> | 2018-06-04 16:53:23 -0700 |
| commit | 73fea7152926dbc41cf008a4ed3402cc1feeefa7 (patch) | |
| tree | 29dfb7ba55669240336cd191ff9661f5234c0dc7 /src/cuda-sim/instructions.cc | |
| parent | 2278609c8e279e7dfba49211256e818e3152318b (diff) | |
parses through all ptx files, TODO: need to impl dp4a
Diffstat (limited to 'src/cuda-sim/instructions.cc')
| -rw-r--r-- | src/cuda-sim/instructions.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cuda-sim/instructions.cc b/src/cuda-sim/instructions.cc index 35d1782..37438fa 100644 --- a/src/cuda-sim/instructions.cc +++ b/src/cuda-sim/instructions.cc @@ -2289,6 +2289,13 @@ void div_impl( const ptx_instruction *pI, ptx_thread_info *thread ) thread->set_operand_value(dst,data, i_type, thread,pI); } +void dp4a_impl( const ptx_instruction *pI, ptx_thread_info *thread ) +{ + printf("instruction not implemented yet"); + assert(0); + +} + void ex2_impl( const ptx_instruction *pI, ptx_thread_info *thread ) { ptx_reg_t src1_data, src2_data, data; |
