いつものように、tensorflow のソースコードを眺めていたら、見つけました。
TensorFlow Lite に、C API を導入しようとしているのを。
lbensorflowlite_c.soを生成するんだね。
c_api.hには、
TFL_CAPI_EXPORT extern TFL_Interpreter* TFL_NewInterpreter( const void* model_data, int32_t model_size); とか、 // Runs inference for the loaded graph. // // NOTE: It is possible that the interpreter is not in a ready state to // evaluate (e.g., if a ResizeInputTensor() has been performed without a call to // AllocateTensors()). TFL_CAPI_EXPORT extern TFL_Status TFL_InterpreterInvoke( TFL_Interpreter* interpreter); とか、あるね。