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

Function TfLiteIntArrayEqual

tensorflow/lite/c/c_api_internal.c:28–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28int TfLiteIntArrayEqual(const TfLiteIntArray* a, const TfLiteIntArray* b) {
29 if (a == b) return 1;
30 if (a == NULL || b == NULL) return 0;
31 return TfLiteIntArrayEqualsArray(a, b->size, b->data);
32}
33
34int TfLiteIntArrayEqualsArray(const TfLiteIntArray* a, int b_size,
35 const int b_data[]) {

Callers 15

TESTFunction · 0.85
MapMethod · 0.85
ResizeTensorImplMethod · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85
PrepareFunction · 0.85

Calls 1

Tested by 2

TESTFunction · 0.68
TESTFunction · 0.68