OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:b_ancestor
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/compiler/xla/service/
hlo_ordering.cc
42
const HloInstruction*
b_ancestor
;
local
43
std::tie(a_ancestor,
b_ancestor
) =
52
// a_ancestor and
b_ancestor
must be either both null or both non-null.
53
CHECK_NE(
b_ancestor
, nullptr);
54
CHECK_EQ(a_ancestor->parent(),
b_ancestor
->parent());
60
if (a_ancestor ==
b_ancestor
&& a_ancestor->opcode() == HloOpcode::kWhile) {
74
if (a_ancestor ==
b_ancestor
&&
98
return ExecutesBeforeInSameComputation(a_ancestor,
b_ancestor
);
call_graph.cc
394
HloInstruction*
b_ancestor
= b;
local
398
// Advance a_ancestor (
b_ancestor
) up the call chain until the call depth of
399
// a_ancestor or
b_ancestor
are the same. Necessarily each call to next_caller
410
b_ancestor
= next_caller(
b_ancestor
);
411
if (
b_ancestor
== nullptr) {
417
while ((a_ancestor != nullptr) && (
b_ancestor
!= nullptr)) {
418
if (a_ancestor->parent() ==
b_ancestor
->parent()) {
419
return {a_ancestor,
b_ancestor
};
423
b_ancestor
= next_caller(b_ancestor)
[
all
...]
buffer_assignment.cc
759
const HloInstruction*
b_ancestor
;
local
760
std::tie(a_ancestor,
b_ancestor
) =
[
all
...]
Completed in 163 milliseconds