Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/saved_model/
Dfunction_deserialization.py225 def recreate_function(saved_function, concrete_functions): argument
253 saved_function.function_spec,
258 if not saved_function.concrete_functions:
268 for function_name in saved_function.concrete_functions:
279 for index, function_name in enumerate(saved_function.concrete_functions):
290 len(saved_function.concrete_functions),
294 for concrete_function_name in saved_function.concrete_functions:
Dsave_test.py626 saved_function = next((f for f in graph_def.library.function
628 self.assertIsNotNone(saved_function)
641 self.assertLen(saved_function.signature.input_arg, 2)
645 self.assertLen(saved_function.signature.input_arg, 1)
/external/tensorflow/tensorflow/c/experimental/saved_model/core/
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()
/external/mesa3d/src/compiler/glsl/
Dlower_jumps.cpp976 function_record saved_function = this->function; in visit() local
1007 this->function = saved_function; in visit()