| 213 | constexpr int kLstmBasicKernelInputSize = 5; |
| 214 | |
| 215 | inline bool isLstmBasicKernel(const TfLiteNode* node) { |
| 216 | return node->inputs->size == kLstmBasicKernelInputSize; |
| 217 | } |
| 218 | |
| 219 | inline bool isLstmFullKernel(const TfLiteNode* node) { |
| 220 | return node->inputs->size == kLstmFullKernelInputSize || |
no outgoing calls
no test coverage detected