• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2015 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_FRAMEWORK_ATTR_VALUE_UTIL_H_
17 #define TENSORFLOW_CORE_FRAMEWORK_ATTR_VALUE_UTIL_H_
18 
19 #include <functional>
20 #include <string>
21 #include <vector>
22 
23 #include "tensorflow/core/framework/partial_tensor_shape.h"
24 #include "tensorflow/core/framework/tensor.h"
25 #include "tensorflow/core/framework/tensor_shape.h"
26 #include "tensorflow/core/framework/types.h"
27 #include "tensorflow/core/lib/core/status.h"
28 #include "tensorflow/core/lib/core/stringpiece.h"
29 #include "tensorflow/core/lib/gtl/array_slice.h"
30 
31 namespace tensorflow {
32 
33 // Forward declare protos so their symbols can be removed from .so exports
34 class AttrValue;
35 class NameAttrList;
36 
37 // A human-readable rendering of attr_value, that is more concise than a
38 // text-format proto.
39 string SummarizeAttrValue(const AttrValue& attr_value);
40 
41 // Generates an error if attr_value doesn't have the indicated attr type.
42 Status AttrValueHasType(const AttrValue& attr_value, StringPiece type);
43 
44 // Converts a text proto value from "text" into the field of *out
45 // indicated by "type" (e.g. from the type field of an AttrDef).
46 // Examples:
47 // * If type:"int" and text:"-14", then *out is set to "i: -14"
48 // * If type:"list(string)" and text:"['foo', 'bar']",
49 //   then *out is set to "list { s: ['foo', 'bar'] }"
50 // Returns true on success.
51 bool ParseAttrValue(StringPiece type, StringPiece text, AttrValue* out);
52 
53 // Sets *out based on the type of value.
54 void SetAttrValue(const string& value, AttrValue* out);
55 void SetAttrValue(const char* value, AttrValue* out);
56 void SetAttrValue(StringPiece value, AttrValue* out);
57 void SetAttrValue(int64 value, AttrValue* out);
58 void SetAttrValue(int32 value, AttrValue* out);
59 void SetAttrValue(float value, AttrValue* out);
60 void SetAttrValue(double value, AttrValue* out);
61 void SetAttrValue(bool value, AttrValue* out);
62 void SetAttrValue(DataType value, AttrValue* out);
63 void SetAttrValue(const TensorShape& value, AttrValue* out);
64 void SetAttrValue(const TensorShapeProto& value, AttrValue* out);
65 void SetAttrValue(const PartialTensorShape& value, AttrValue* out);
66 void SetAttrValue(const Tensor& value, AttrValue* out);
67 void SetAttrValue(const TensorProto& value, AttrValue* out);
68 void SetAttrValue(const NameAttrList& value, AttrValue* out);
69 
70 void SetAttrValue(gtl::ArraySlice<string> value, AttrValue* out);
71 void SetAttrValue(gtl::ArraySlice<const char*> value, AttrValue* out);
72 void SetAttrValue(gtl::ArraySlice<StringPiece> value, AttrValue* out);
73 void SetAttrValue(gtl::ArraySlice<int64> value, AttrValue* out);
74 void SetAttrValue(gtl::ArraySlice<int32> value, AttrValue* out);
75 void SetAttrValue(gtl::ArraySlice<float> value, AttrValue* out);
76 void SetAttrValue(gtl::ArraySlice<double> value, AttrValue* out);
77 void SetAttrValue(gtl::ArraySlice<bool> value, AttrValue* out);
78 void SetAttrValue(const std::vector<bool>& value, AttrValue* out);
79 void SetAttrValue(std::initializer_list<bool> value, AttrValue* out);
80 void SetAttrValue(DataTypeSlice value, AttrValue* out);
81 void SetAttrValue(gtl::ArraySlice<TensorShape> value, AttrValue* out);
82 void SetAttrValue(gtl::ArraySlice<TensorShapeProto> value, AttrValue* out);
83 void SetAttrValue(gtl::ArraySlice<PartialTensorShape> value, AttrValue* out);
84 void SetAttrValue(gtl::ArraySlice<Tensor> value, AttrValue* out);
85 void SetAttrValue(gtl::ArraySlice<TensorProto> value, AttrValue* out);
86 void SetAttrValue(gtl::ArraySlice<NameAttrList> value, AttrValue* out);
87 
88 void SetAttrValue(const AttrValue& value, AttrValue* out);
89 
90 // Returns true if a and b have the same value.
91 bool AreAttrValuesEqual(const AttrValue& a, const AttrValue& b);
92 
93 // Returns a hash of `a` that is consistent with AreAttrValuesEqual. In other
94 // words, if two AttrValues compare equal according to AreAttrValuesEqual,
95 // they will have the same hash value.
96 // Similarly to protobuf deterministic serialization, hash value is
97 // guaranteed to be stable only for a given binary. In particular, one should
98 // probably not persist the returned value.
99 uint64 AttrValueHash(const AttrValue& a);
100 
101 // WARNING: Equality check might return false-negative for large (> 32mb)
102 // tensors defined with different TensorProto representations.
103 //
104 // A pair of consistent hash and equals functions that are guaranteed to be fast
105 // with AttrValues that potentially can have very large Tensors (larger than
106 // 32mb) defined by TensorProto. If large identical Tensors are defined using
107 // different representations (e.g. one with tensor content, and second with
108 // bool_val), they will have different hash code and equals will return false.
109 // Small (less than 32mb) tensors with different TensorProto representations
110 // hashed/compared by their tensor content.
111 uint64 FastAttrValueHash(const AttrValue& a);
112 bool FastAreAttrValuesEqual(const AttrValue& a, const AttrValue& b);
113 
114 // Returns true if "val" has a placeholder.
115 bool HasPlaceHolder(const AttrValue& val);
116 
117 // SubstitutePlaceholders recursively replaces placeholders in 'value'
118 // with an attr value by calling SubstituteFunc. Returns true iff all
119 // placeholders in "value" are replaced with a value.
120 //
121 // SubstituteFunc is given a placeholder string. If the placeholder is
122 // unknown, SubstituteFunc returns false. Otherwise, overwrites the
123 // attr value and returns true.
124 using SubstituteFunc = std::function<bool(const string&, AttrValue*)>;
125 bool SubstitutePlaceholders(const SubstituteFunc& substitute, AttrValue* value);
126 
127 }  // namespace tensorflow
128 
129 #endif  // TENSORFLOW_CORE_FRAMEWORK_ATTR_VALUE_UTIL_H_
130