| 916 | static const TfLiteExternalContextType kType = kTfLiteGemmLowpContext; |
| 917 | |
| 918 | static TestExternalContext* Get(TfLiteContext* context) { |
| 919 | return reinterpret_cast<TestExternalContext*>( |
| 920 | context->GetExternalContext(context, kType)); |
| 921 | } |
| 922 | |
| 923 | static void Set(TfLiteContext* context, TestExternalContext* value) { |
| 924 | context->SetExternalContext(context, kType, value); |
no test coverage detected