aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/grappler/costs/virtual_placer.h
blob: fee5ce0f510014988656f418b857a73b8d68b807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

#ifndef TENSORFLOW_CORE_GRAPPLER_COSTS_VIRTUAL_PLACER_H_
#define TENSORFLOW_CORE_GRAPPLER_COSTS_VIRTUAL_PLACER_H_

#include <unordered_map>
#include "tensorflow/core/platform/types.h"
#include "tensorflow/core/protobuf/device_properties.pb.h"

namespace tensorflow {
class NodeDef;

namespace grappler {
class Cluster;

// The virtual placer emulates the behavior of the TF placer.
class VirtualPlacer {
 public:
  VirtualPlacer(const Cluster* cluster);

  const DeviceProperties& get_device(const NodeDef& node) const;

  // Returns device name from cluster, which best matches the node.device()
  // specification. Returns default device if no match was found or the
  // node.device() could not be parsed.
  string get_canonical_device_name(const NodeDef& node) const;

 private:
  // Converts given device name to Lowercase Fully-Qualified Name (LFQN) string.
  // This helps us disambiguate device names internally and simplify matching.
  // If device_name couldn't be parsed successfully, returns empty string.
  string to_lfqn_or_empty(const string& device_name) const;

  // Map based on the cluster info: cluster device name -> device properties.
  std::unordered_map<string, DeviceProperties> devices_;

  // Maps LFQN to original device name as it was declared in cluster.
  std::unordered_map<string, string> lfqn_map_;

  string default_device_name_;
  string default_job_name_lowercase_;
};

}  // namespace grappler
}  // end namespace tensorflow

#endif  // TENSORFLOW_CORE_GRAPPLER_COSTS_VIRTUAL_PLACER_H_