Home | History | Annotate | Download | only in service

Lines Matching defs:bitcast

518   // Bitcast is an alias of its operand. A tuple with a bitcast element should
519 // have the operand of the bitcast in its points-to set.
525 auto bitcast = builder.AddInstruction(HloInstruction::CreateUnary(
528 builder.AddInstruction(HloInstruction::CreateTuple({constant1, bitcast}));
532 EXPECT_EQ(1, points_to_analysis_->GetPointsToSet(bitcast).size());
534 points_to_analysis_->GetPointsToSet(bitcast).element({}), {constant2});
536 points_to_analysis_->GetPointsToSet(bitcast).tuple_sources({}).empty());