Home
last modified time | relevance | path

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

/aosp_15_r20/external/federated-compute/fcp/client/engine/
H A Dcommon.cc38 const absl::flat_hash_set<std::string>& expected_input_tensor_names_set, in ValidateTensorflowSpec() argument
41 if (expected_input_tensor_names_set.size() != in ValidateTensorflowSpec()
49 if (!expected_input_tensor_names_set.contains(it.name())) { in ValidateTensorflowSpec()
H A Dtflite_plan_engine.cc81 absl::flat_hash_set<std::string> expected_input_tensor_names_set; in RunPlan() local
83 expected_input_tensor_names_set.insert(it->first); in RunPlan()
86 tensorflow_spec, expected_input_tensor_names_set, output_names); in RunPlan()
H A Dsimple_plan_engine.cc62 absl::flat_hash_set<std::string> expected_input_tensor_names_set; in RunPlan() local
64 expected_input_tensor_names_set.insert(input.first); in RunPlan()
67 tensorflow_spec, expected_input_tensor_names_set, output_names); in RunPlan()
H A Dcommon.h73 const absl::flat_hash_set<std::string>& expected_input_tensor_names_set,