| 302 | } |
| 303 | |
| 304 | TfLiteStatus VisitControlOperator(DelegateData& delegateData, |
| 305 | TfLiteContext* tfLiteContext, |
| 306 | TfLiteNode* tfLiteNode, |
| 307 | int nodeIndex, |
| 308 | int32_t operatorCode) |
| 309 | { |
| 310 | switch(operatorCode) |
| 311 | { |
| 312 | case kTfLiteBuiltinConcatenation: |
| 313 | return VisitConcatenationOperator(delegateData, tfLiteContext, tfLiteNode, nodeIndex, operatorCode); |
| 314 | case kTfLiteBuiltinMean: |
| 315 | return VisitMeanOperator(delegateData, tfLiteContext, tfLiteNode, nodeIndex, operatorCode); |
| 316 | default: |
| 317 | return kTfLiteError; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | } // namespace armnnDelegate |
no test coverage detected