Home
last modified time | relevance | path

Searched refs:IsDefinedBefore (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_ordering_test.cc190 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(param), in TEST_F()
192 EXPECT_TRUE(!ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(constant), in TEST_F()
244 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(constant), in TEST_F()
260 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(negate), in TEST_F()
271 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(constant), in TEST_F()
281 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(xla_while), in TEST_F()
392 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(add_1), in TEST_F()
395 ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(add_2), in TEST_F()
398 ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(add_1), in TEST_F()
400 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(add_1), in TEST_F()
[all …]
Dhlo_ordering.h70 bool IsDefinedBefore(const HloValue& a, const HloValue& b) const;
Dhlo_alias_analysis.cc649 if (ordering.IsDefinedBefore(*a, *b)) { in HasLiveRangeInterference()
651 } else if (ordering.IsDefinedBefore(*b, *a)) { in HasLiveRangeInterference()
667 if (!ordering.IsDefinedBefore(*values[i - 1], *values[i])) { in HasLiveRangeInterference()
Dhlo_ordering.cc143 bool HloOrdering::IsDefinedBefore(const HloValue& a, const HloValue& b) const { in IsDefinedBefore() function in xla::HloOrdering
383 if (!IsDefinedBefore(a, b)) { in LiveRangeStrictlyBefore()
Dcopy_insertion.cc525 return ordering_.IsDefinedBefore(*a, *b); in CopyRemover()
861 return ordering_.IsDefinedBefore(*a.value, *b.value); in LiveRangeBefore()