HomeSort by relevance Sort by last modified time
    Searched refs:ValueIsDefinedAt (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_dataflow_analysis_test.cc 118 EXPECT_TRUE(analysis.ValueIsDefinedAt(constant1));
119 EXPECT_TRUE(analysis.ValueIsDefinedAt(constant2));
120 EXPECT_TRUE(analysis.ValueIsDefinedAt(add));
168 EXPECT_TRUE(analysis.ValueIsDefinedAt(param0));
169 EXPECT_TRUE(analysis.ValueIsDefinedAt(param1));
170 EXPECT_TRUE(analysis.ValueIsDefinedAt(tuple, /*index=*/{}));
171 EXPECT_FALSE(analysis.ValueIsDefinedAt(tuple, /*index=*/{0}));
172 EXPECT_FALSE(analysis.ValueIsDefinedAt(tuple, /*index=*/{1}));
173 EXPECT_FALSE(analysis.ValueIsDefinedAt(gte0));
174 EXPECT_FALSE(analysis.ValueIsDefinedAt(gte1))
    [all...]
hlo_dataflow_analysis.h 85 bool ValueIsDefinedAt(const HloInstruction* instruction,
91 // Precondition: ValueIsDefinedAt is true for this instruction and index.
hlo_dataflow_analysis.cc 78 bool HloDataflowAnalysis::ValueIsDefinedAt(const HloInstruction* instruction,
89 CHECK(ValueIsDefinedAt(instruction, index)) << instruction->ToString();
95 CHECK(ValueIsDefinedAt(instruction, index));
161 ValueIsDefinedAt(instruction, index) ? " (def)" : "",
170 ValueIsDefinedAt(instruction) ? " (def)" : "", "\n");
    [all...]

Completed in 1587 milliseconds