[RefNN] Add missing break in Executor (#1561)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 19 Sep 2018 04:20:46 +0000 (13:20 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 19 Sep 2018 04:20:46 +0000 (13:20 +0900)
'break' is missing at the end of "ADD" case currently.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/ann/runtimes/ref/src/Executor.cpp

index b1be0e6..8b2b3fd 100644 (file)
@@ -307,6 +307,7 @@ int Executor::executeOperation(const Operation &operation)
                        reinterpret_cast<float *>(out.buffer), outShape);
       }
     }
+    break;
     case OperationType::DEPTHWISE_CONV_2D:
     {
       const size_t inCount = ins.size();