Home
last modified time | relevance | path

Searched refs:GetRetTypes (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc161 Status GetRetTypes(Handle h, DataTypeVector* ret_types) override;
227 Status FunctionLibraryRuntimeOverlay::GetRetTypes(Handle h, in GetRetTypes() function in tensorflow::FunctionLibraryRuntimeOverlay
229 return base_flr_->GetRetTypes(h, ret_types); in GetRetTypes()
342 Status GetRetTypes(Handle handle, DataTypeVector* ret_types) override;
584 Status FunctionLibraryRuntimeImpl::GetRetTypes(Handle h, in GetRetTypes() function in tensorflow::FunctionLibraryRuntimeImpl
587 return parent_->GetRetTypes(h, ret_types); in GetRetTypes()
Dprocess_function_library_runtime.h117 Status GetRetTypes(FunctionLibraryRuntime::Handle h,
Dprocess_function_library_runtime.cc154 Status ProcessFunctionLibraryRuntime::GetRetTypes( in GetRetTypes() function in tensorflow::ProcessFunctionLibraryRuntime
170 return flr->GetRetTypes(h, ret_types); in GetRetTypes()
/external/tensorflow/tensorflow/core/framework/
Dfunction.h761 virtual Status GetRetTypes(Handle h, DataTypeVector* ret_types) = 0;
/external/tensorflow/tensorflow/core/kernels/data/
Dcaptured_function.cc710 TF_RETURN_IF_ERROR(lib->GetRetTypes(f_handle, &ret_types)); in Instantiate()