Home
last modified time | relevance | path

Searched refs:function_path (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/cc/saved_model/experimental/public/
H A Dsaved_model_api.h71 ConcreteFunction* GetConcreteFunction(const std::string& function_path,
85 const std::string& function_path, Status* status);
132 const std::string& function_path, Status* status) { in GetConcreteFunction() argument
134 saved_model_.get(), function_path.c_str(), status->GetTFStatus()); in GetConcreteFunction()
142 const std::string& function_path, Status* status) { in GetSignatureDefFunction() argument
144 saved_model_.get(), function_path.c_str(), status->GetTFStatus()); in GetSignatureDefFunction()
/aosp_15_r20/tools/test/connectivity/acts/framework/tests/libs/ota/ota_runners/
Dota_runner_factory_test.py78 function_path = 'acts.libs.ota.ota_runners.ota_runner_factory.create'
79 with mock.patch(function_path) as mocked_function:
94 function_path = 'acts.libs.ota.ota_runners.ota_runner_factory.create'
95 with mock.patch(function_path) as mocked_function:
/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/saved_model/core/
H A Dtf_saved_model_api.cc176 Status TFSavedModelAPI::GetFunction(const std::string& function_path, in GetFunction() argument
179 internal::FindNodeAtPath(function_path, bundle_.saved_object_graph()); in GetFunction()
181 return errors::NotFound("No saved object found at path ", function_path); in GetFunction()
186 return errors::NotFound("No function found at path ", function_path); in GetFunction()
H A Dsaved_model_api.h43 virtual Status GetFunction(const std::string& function_path,
H A Dtf_saved_model_api.h58 Status GetFunction(const std::string& function_path,
/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/saved_model/internal/
H A Dsaved_model_api.cc98 const char* function_path, in TF_GetSavedModelConcreteFunction() argument
102 tensorflow::unwrap(model)->GetFunction(function_path, &result); in TF_GetSavedModelConcreteFunction()
/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/saved_model/public/
H A Dsaved_model_api.h84 TF_SavedModel* model, const char* function_path, TF_Status* status);