Retrieve an operator's description of its work, for profiling purposes.
| 458 | |
| 459 | /// Retrieve an operator's description of its work, for profiling purposes. |
| 460 | const char* OpProfilingString(const TfLiteRegistration& op_reg, |
| 461 | const TfLiteNode* node) const { |
| 462 | if (op_reg.profiling_string == nullptr) return nullptr; |
| 463 | return op_reg.profiling_string(context_, node); |
| 464 | } |
| 465 | |
| 466 | // Set the value of an external context. TFLite interpreter doesn't take the |
| 467 | // memory ownership of this external context 'ctx', and the context should |
no outgoing calls
no test coverage detected