summaryrefslogtreecommitdiff
path: root/src/cuda-sim/instructions.cc
diff options
context:
space:
mode:
authorsspenst <[email protected]>2016-07-04 09:43:36 -0700
committersspenst <[email protected]>2016-07-04 09:43:36 -0700
commitf7c57e76c086ce417626f37ffc91097c839c687d (patch)
tree4529510cb87350da37ec402ad58ef13e313e7799 /src/cuda-sim/instructions.cc
parent281798191f9bc37a75592d34a5e38cc5d6c41b6d (diff)
Reverted part of the previous commit so that our new changes related to DNNs can be done in a different branch
Diffstat (limited to 'src/cuda-sim/instructions.cc')
-rw-r--r--src/cuda-sim/instructions.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cuda-sim/instructions.cc b/src/cuda-sim/instructions.cc
index 922e14a..02ce01c 100644
--- a/src/cuda-sim/instructions.cc
+++ b/src/cuda-sim/instructions.cc
@@ -816,11 +816,6 @@ void add_impl( const ptx_instruction *pI, ptx_thread_info *thread )
void addc_impl( const ptx_instruction *pI, ptx_thread_info *thread ) { inst_not_implemented(pI); }
-void ama_impl( const ptx_instruction *pI, ptx_thread_info *thread )
-{
- printf("AMA instruction found.\n");
-}
-
void and_impl( const ptx_instruction *pI, ptx_thread_info *thread )
{
ptx_reg_t src1_data, src2_data, data;
@@ -3703,11 +3698,6 @@ void slct_impl( const ptx_instruction *pI, ptx_thread_info *thread )
thread->set_operand_value(dst,d, i_type, thread, pI);
}
-void spr_impl( const ptx_instruction *pI, ptx_thread_info *thread )
-{
- printf("SPR instruction found.\n");
-}
-
void sqrt_impl( const ptx_instruction *pI, ptx_thread_info *thread )
{
ptx_reg_t a, d;