Home
last modified time | relevance | path

Searched refs:AreAttrValuesEqual (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dmap_and_batch_fusion_test.cc101 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("f"), in TEST()
103 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("Targuments"), in TEST()
105 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("output_shapes"), in TEST()
107 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("output_types"), in TEST()
184 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("f"), in TEST()
186 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("Targuments"), in TEST()
188 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("output_shapes"), in TEST()
190 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("output_types"), in TEST()
269 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("f"), in TEST()
271 EXPECT_TRUE(AreAttrValuesEqual(map_and_batch_node.attr().at("Targuments"), in TEST()
[all …]
Dlatency_all_edges_test.cc84 AreAttrValuesEqual(latency_node.attr().at("output_shapes"), in TEST_P()
89 AreAttrValuesEqual(latency_node.attr().at("output_types"), in TEST_P()
95 AreAttrValuesEqual(latency_node.attr().at("output_types"), in TEST_P()
Dshuffle_and_repeat_fusion_test.cc95 EXPECT_TRUE(AreAttrValuesEqual(shuffle_and_repeat_node.attr().at(attr), in TEST()
159 EXPECT_TRUE(AreAttrValuesEqual(shuffle_and_repeat_node.attr().at(attr), in TEST()
232 EXPECT_TRUE(AreAttrValuesEqual(shuffle_and_repeat_node.attr().at(attr), in TEST()
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util_test.cc179 EXPECT_FALSE(AreAttrValuesEqual(a1, a2)); in ExpectDifferent()
180 EXPECT_FALSE(AreAttrValuesEqual(a2, a1)); in ExpectDifferent()
196 EXPECT_TRUE(AreAttrValuesEqual(a, a)); in TEST()
207 EXPECT_TRUE(AreAttrValuesEqual(c1, c1)); in TEST()
Dattr_value_util.cc152 bool AreAttrValuesEqual(const AttrValue& a, const AttrValue& b, in AreAttrValuesEqual() function
179 if (!AreAttrValuesEqual(iter->second, bm_pair.second, tensor_equality)) in AreAttrValuesEqual()
588 bool AreAttrValuesEqual(const AttrValue& a, const AttrValue& b) { in AreAttrValuesEqual() function
589 return AreAttrValuesEqual(a, b, AreTensorProtosEqual); in AreAttrValuesEqual()
597 return AreAttrValuesEqual(a, b, FastAreTensorProtosEqual); in FastAreAttrValuesEqual()
Dattr_value_util.h95 bool AreAttrValuesEqual(const AttrValue& a, const AttrValue& b);
Dop_def_util.cc716 if (!AreAttrValuesEqual(penultimate_attr.default_value(), in OpDefAddedDefaultsUnchanged()
746 !AreAttrValuesEqual(old_attr.default_value(), in OpDefAttrDefaultsUnchanged()
799 if (!AreAttrValuesEqual(a1.default_value(), a2.default_value())) return false; in AttrDefEqual()
800 if (!AreAttrValuesEqual(a1.allowed_values(), a2.allowed_values())) in AttrDefEqual()
Dgraph_def_util.cc111 AreAttrValuesEqual(producer_attr_def->default_value(), attr.second)) { in RemoveNewDefaultAttrsFromNodeDef()
Dnode_def_builder.cc267 if (!AreAttrValuesEqual(*found, value)) { in AttrValueAlreadyPresent()
Dfunction.cc869 if (!AreAttrValuesEqual(iter1.second, iter2->second)) return false; in FunctionDefsEqual()
/external/tensorflow/tensorflow/security/fuzzing/
DAreAttrValuesEqual_fuzz.cc44 assert(tensorflow::AreAttrValuesEqual(proto, proto_same)); in compareValues()
47 assert(tensorflow::AreAttrValuesEqual(proto, proto2) == in compareValues()
/external/tensorflow/tensorflow/core/grappler/utils/
Dgrappler_test.cc191 EXPECT_TRUE(AreAttrValuesEqual(want.attr().at(attr), got.attr().at(attr))); in CompareNodes()
Dgraph_view_test.cc949 EXPECT_TRUE(AreAttrValuesEqual(*attr, expected_attr.second)); in CompareGraphViewWithGraph()
/external/tensorflow/tensorflow/core/util/
Dequal_graph_def.cc213 if (!AreAttrValuesEqual(e.second, iter->second)) { in EqualNodeDef()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dattr_builder.cc196 AreAttrValuesEqual(attr_def.default_value(), attr_value)) { in ValueMatchesDefault()
/external/tensorflow/tensorflow/compiler/jit/
Dnode_matchers.cc212 !AreAttrValuesEqual(it->second, *attr_kv_pair.second)) { in MatchAndExplain()
/external/tensorflow/tensorflow/python/client/
Dtf_session_helper.cc474 if (!AreAttrValuesEqual(actual_attr_value, expected_attr_value)) { in EqualAttrValueWrapper()
/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view_test.cc82 EXPECT_TRUE(AreAttrValuesEqual(it->second, attr.second.proto)); in CheckNode()