| 74 | void TfLiteIntArrayFree(TfLiteIntArray* a) { free(a); } |
| 75 | |
| 76 | int TfLiteFloatArrayGetSizeInBytes(int size) { |
| 77 | static TfLiteFloatArray dummy; |
| 78 | return sizeof(dummy) + sizeof(dummy.data[0]) * size; |
| 79 | } |
| 80 | |
| 81 | TfLiteFloatArray* TfLiteFloatArrayCreate(int size) { |
| 82 | TfLiteFloatArray* ret = |
no outgoing calls
no test coverage detected