Searched refs:ValueIsDefinedAt (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_dataflow_analysis_test.cc | 118 EXPECT_TRUE(analysis.ValueIsDefinedAt(constant1)); in TEST_P() 119 EXPECT_TRUE(analysis.ValueIsDefinedAt(constant2)); in TEST_P() 120 EXPECT_TRUE(analysis.ValueIsDefinedAt(add)); in TEST_P() 168 EXPECT_TRUE(analysis.ValueIsDefinedAt(param0)); in TEST_P() 169 EXPECT_TRUE(analysis.ValueIsDefinedAt(param1)); in TEST_P() 170 EXPECT_TRUE(analysis.ValueIsDefinedAt(tuple, /*index=*/{})); in TEST_P() 171 EXPECT_FALSE(analysis.ValueIsDefinedAt(tuple, /*index=*/{0})); in TEST_P() 172 EXPECT_FALSE(analysis.ValueIsDefinedAt(tuple, /*index=*/{1})); in TEST_P() 173 EXPECT_FALSE(analysis.ValueIsDefinedAt(gte0)); in TEST_P() 174 EXPECT_FALSE(analysis.ValueIsDefinedAt(gte1)); in TEST_P() [all …]
|
D | hlo_dataflow_analysis.cc | 78 bool HloDataflowAnalysis::ValueIsDefinedAt(const HloInstruction* instruction, in ValueIsDefinedAt() function in xla::HloDataflowAnalysis 89 CHECK(ValueIsDefinedAt(instruction, index)) << instruction->ToString(); in GetValueDefinedAt() 95 CHECK(ValueIsDefinedAt(instruction, index)); in GetValueDefinedAt() 161 ValueIsDefinedAt(instruction, index) ? " (def)" : "", in ToString() 170 ValueIsDefinedAt(instruction) ? " (def)" : "", "\n"); in ToString()
|
D | hlo_dataflow_analysis.h | 85 bool ValueIsDefinedAt(const HloInstruction* instruction,
|