Searched defs:TfLiteRegistration (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/include/tensorflow/lite/core/c/ |
D | common.h | 899 typedef struct TfLiteRegistration { struct 918 void* (*init)(TfLiteContext* context, const char* buffer, size_t length); 921 void (*free)(TfLiteContext* context, void* buffer); 929 TfLiteStatus (*prepare)(TfLiteContext* context, TfLiteNode* node); 933 TfLiteStatus (*invoke)(TfLiteContext* context, TfLiteNode* node); 961 // The external version of `TfLiteRegistration`. Since we can't use internal argument 966 TfLiteRegistrationExternal* registration_external; argument 979 } TfLiteRegistration; typedef
|
/external/tensorflow/tensorflow/lite/c/ |
D | common.h | 851 typedef struct TfLiteRegistration { struct 870 void* (*init)(TfLiteContext* context, const char* buffer, size_t length); 873 void (*free)(TfLiteContext* context, void* buffer); 881 TfLiteStatus (*prepare)(TfLiteContext* context, TfLiteNode* node); 885 TfLiteStatus (*invoke)(TfLiteContext* context, TfLiteNode* node); 913 // The external version of `TfLiteRegistration`. Since we can't use internal argument 918 TfLiteRegistrationExternal* registration_external; argument 919 } TfLiteRegistration; typedef
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/ |
D | model_builder.cc | 1304 absl::Status Parse(const TfLiteNode*, const TfLiteRegistration*, in Parse()
|