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

Function IsFlexOp

tensorflow/lite/util.cc:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20namespace tflite {
21
22bool IsFlexOp(const char* custom_name) {
23 return custom_name && strncmp(custom_name, kFlexCustomCodePrefix,
24 strlen(kFlexCustomCodePrefix)) == 0;
25}
26
27TfLiteIntArray* ConvertVectorToTfLiteIntArray(const std::vector<int>& input) {
28 return ConvertArrayToTfLiteIntArray(static_cast<int>(input.size()),

Callers 5

TESTFunction · 0.85
PrepareFunction · 0.85
OpPrepareMethod · 0.85
FindOpMethod · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68