Searched defs:TfLiteContext (Results 1 – 3 of 3) sorted by relevance
| /external/tensorflow/tensorflow/lite/c/ |
| D | c_api_internal.h | 393 typedef struct TfLiteContext { struct 412 TfLiteStatus (*GetExecutionPlan)(struct TfLiteContext* context, argument 423 TfLiteStatus (*ResizeTensor)(struct TfLiteContext*, TfLiteTensor* tensor, argument 426 void (*ReportError)(struct TfLiteContext*, const char* msg, ...); argument 431 TfLiteStatus (*AddTensors)(struct TfLiteContext*, int tensors_to_add, argument 436 TfLiteStatus (*GetNodeAndRegistration)(struct TfLiteContext*, int node_index, argument 443 struct TfLiteContext*, TfLiteRegistration registration, argument 452 TfLiteExternalContext* (*GetExternalContext)(struct TfLiteContext*, argument 457 void (*SetExternalContext)(struct TfLiteContext*, TfLiteExternalContextType, argument 467 } TfLiteContext; argument
|
| /external/tensorflow/tensorflow/lite/ |
| D | model_test.cc | 43 void* dummy_init(TfLiteContext*, const char*, size_t) { return nullptr; } in dummy_init() argument 44 void dummy_free(TfLiteContext*, void*) {} in dummy_free() argument 45 TfLiteStatus dummy_resize(TfLiteContext*, TfLiteNode*) { return kTfLiteOk; } in dummy_resize() argument 46 TfLiteStatus dummy_invoke(TfLiteContext*, TfLiteNode*) { return kTfLiteOk; } in dummy_invoke() argument
|
| D | interpreter_test.cc | 1413 Prepare = [](TfLiteContext*, TfLiteDelegate* delegate) -> TfLiteStatus { in TEST() argument
|