• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #ifndef TENSORFLOW_CORE_COMMON_RUNTIME_EAGER_CONTEXT_DISTRIBUTED_MANAGER_H_
17 #define TENSORFLOW_CORE_COMMON_RUNTIME_EAGER_CONTEXT_DISTRIBUTED_MANAGER_H_
18 
19 #include "tensorflow/c/eager/immediate_execution_context.h"
20 #include "tensorflow/c/eager/immediate_execution_distributed_manager.h"
21 #include "tensorflow/core/common_runtime/eager/context.h"
22 #include "tensorflow/core/platform/status.h"
23 
24 namespace tensorflow {
25 #if !defined(IS_MOBILE_PLATFORM)
26 class EagerContext;
27 class ServerDef;
28 
29 class EagerContextDistributedManager
30     : public ImmediateExecutionDistributedManager {
31  public:
EagerContextDistributedManager(EagerContext * context)32   explicit EagerContextDistributedManager(EagerContext* context)
33       : context_(context) {}
34 
35   Status SetOrUpdateServerDef(const ServerDef& server_def, bool reset_context,
36                               int keep_alive_secs) override;
37 
38   Status EnableCollectiveOps(const ServerDef& server_def) override;
39 
40   Status CheckRemoteAlive(const std::string& remote_task_name,
41                           bool* is_alive) override;
42 
43  private:
44   EagerContext* context_;
45 };
46 #endif  // !IS_MOBILE_PLATFORM
47 }  // namespace tensorflow
48 
49 #endif  // TENSORFLOW_CORE_COMMON_RUNTIME_EAGER_CONTEXT_DISTRIBUTED_MANAGER_H_
50