Home
last modified time | relevance | path

Searched refs:executor_name (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dremote_fused_graph_execute_op.cc39 if (!execute_info_.executor_name().empty()) { in RemoteFusedGraphExecuteOp()
42 execute_info_.executor_name()); in RemoteFusedGraphExecuteOp()
48 << execute_info_.executor_name(); in RemoteFusedGraphExecuteOp()
Dremote_fused_graph_execute_utils.h176 const string& executor_name, const GraphDef& subgraph_def,
184 const string& node_name, const string& executor_name,
275 const string& executor_name,
311 const string& executor_name,
Dremote_fused_graph_execute_op_test_utils.cc98 const string& executor_name) in TestRemoteFusedGraphExecutor() argument
99 : fused_op_types_(fused_op_types), executor_name_(executor_name) {} in TestRemoteFusedGraphExecutor()
Dremote_fused_graph_execute_op_test_utils.h66 const string& executor_name);
Dremote_fused_graph_execute_utils.cc608 const string& executor_name, const GraphDef& subgraph_def, in BuildRemoteFusedGraphExecuteInfo() argument
617 execute_info->set_executor_name(executor_name); in BuildRemoteFusedGraphExecuteInfo()
677 const string& node_name, const string& executor_name, in BuildRemoteFusedGraphExecuteOpNode() argument
689 executor_name, subgraph_def, inputs, outputs, require_shape_type, in BuildRemoteFusedGraphExecuteOpNode()
1093 const std::vector<string>& outputs, const string& executor_name, in FuseRemoteGraphByExecutor() argument
1095 const ExecutorBuildFunc* build_func = GetExecutorBuildFunc(executor_name); in FuseRemoteGraphByExecutor()
1097 return errors::InvalidArgument("Unknown executor name: " + executor_name); in FuseRemoteGraphByExecutor()
1464 const string& executor_name, const string& node_name) { in BuildNodeTypeAttr() argument
1466 ",", executor_name, ",", node_name); in BuildNodeTypeAttr()
Dremote_fused_graph_rewriter_transform_test.cc196 CHECK_EQ(remote_fused_graph_executor_name_, info.executor_name()); in CheckGraph()
/external/grpc-grpc/src/core/lib/iomgr/
Dexecutor.h48 GrpcExecutor(const char* executor_name);
66 static size_t RunClosures(const char* executor_name, grpc_closure_list list);
Dexecutor.cc60 size_t GrpcExecutor::RunClosures(const char* executor_name, in RunClosures() argument
69 EXECUTOR_TRACE("(%s) run %p [created by %s:%d]", executor_name, c, in RunClosures()
73 EXECUTOR_TRACE("(%s) run %p", executor_name, c); in RunClosures()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dexecutor.h57 explicit Executor(const char* executor_name);
107 static size_t RunClosures(const char* executor_name, grpc_closure_list list);
Dexecutor.cc100 size_t Executor::RunClosures(const char* executor_name, in RunClosures() argument
120 EXECUTOR_TRACE("(%s) run %p [created by %s:%d]", executor_name, c, in RunClosures()
124 EXECUTOR_TRACE("(%s) run %p", executor_name, c); in RunClosures()
/external/tensorflow/tensorflow/core/framework/
Dremote_fused_graph_execute_info.proto34 string executor_name = 4; field