MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / TfLiteFloatArrayCreate

Function TfLiteFloatArrayCreate

tensorflow/lite/c/c_api_internal.c:81–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81TfLiteFloatArray* TfLiteFloatArrayCreate(int size) {
82 TfLiteFloatArray* ret =
83 (TfLiteFloatArray*)malloc(TfLiteFloatArrayGetSizeInBytes(size));
84 ret->size = size;
85 return ret;
86}
87
88void TfLiteFloatArrayFree(TfLiteFloatArray* a) { free(a); }
89

Callers 6

ParseQuantizationMethod · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85
QuantizeTensorMethod · 0.85
TESTFunction · 0.85

Calls 1

Tested by 4

TESTFunction · 0.68
TEST_FFunction · 0.68
QuantizeTensorMethod · 0.68
TESTFunction · 0.68