Home
last modified time | relevance | path

Searched refs:saved_function (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/saved_model/core/
H A Dsaved_model_utils.cc186 Status ValidateSingleConcreteFunction(const SavedFunction& saved_function) { in ValidateSingleConcreteFunction() argument
192 if (saved_function.concrete_functions_size() != 1) { in ValidateSingleConcreteFunction()
442 const SavedFunction& saved_function = node.function(); in PartiallyReviveSavedModelObjects() local
443 TF_RETURN_IF_ERROR(ValidateSingleConcreteFunction(saved_function)); in PartiallyReviveSavedModelObjects()
446 const std::string& function_name = saved_function.concrete_functions(0); in PartiallyReviveSavedModelObjects()
450 const FunctionSpec& function_spec = saved_function.function_spec(); in PartiallyReviveSavedModelObjects()
/aosp_15_r20/external/tensorflow/tensorflow/python/saved_model/
H A Dfunction_deserialization.py229 def recreate_function(saved_function, concrete_functions): argument
256 saved_function.function_spec)
260 if not saved_function.concrete_functions:
270 for function_name in saved_function.concrete_functions:
289 for index, function_name in enumerate(saved_function.concrete_functions):
303 for concrete_function_name in saved_function.concrete_functions:
H A Dsave_test.py628 saved_function = next((f for f in graph_def.library.function
630 self.assertIsNotNone(saved_function)
643 self.assertLen(saved_function.signature.input_arg, 2)
647 self.assertLen(saved_function.signature.input_arg, 1)
/aosp_15_r20/external/mesa3d/src/compiler/glsl/
H A Dlower_jumps.cpp879 function_record saved_function = this->function; in visit() local
910 this->function = saved_function; in visit()