- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TF_Server (0.09 sec)
-
tensorflow/c/c_api_internal.h
#endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) bool update_docs_called TF_GUARDED_BY(lock); tensorflow::mutex lock; }; #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) struct TF_Server { TF_Server(std::unique_ptr<tensorflow::ServerInterface> server); const tensorflow::string target; std::unique_ptr<tensorflow::ServerInterface> server; };
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0) -
tensorflow/c/c_api.h
// (specified by a ClusterSpec), and corresponds to a particular task in a // named job. The server can communicate with any other server in the same // cluster. // In-process TensorFlow server. typedef struct TF_Server TF_Server; // Creates a new in-process TensorFlow server configured using a serialized // ServerDef protocol buffer provided via `proto` and `proto_len`. //
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
// TF_Server functions ---------------------------------------------- #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) TF_Server::TF_Server(std::unique_ptr<tensorflow::ServerInterface> server) : target(server->target()), server(std::move(server)) {} #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) TF_Server* TF_NewServer(const void* proto, size_t proto_len,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0)