Searched refs:common_type (Results 1 – 1 of 1) sorted by relevance
130 DataType::Type common_type = phi->GetType(); in TypePhiFromInputs() local140 if (common_type == input_type) { in TypePhiFromInputs()142 } else if (DataType::Is64BitType(common_type) != DataType::Is64BitType(input_type)) { in TypePhiFromInputs()145 } else if (DataType::IsIntegralType(common_type)) { in TypePhiFromInputs()151 common_type = input_type; in TypePhiFromInputs()155 DCHECK(DataType::IsFloatingPointType(common_type) || in TypePhiFromInputs()156 common_type == DataType::Type::kReference); in TypePhiFromInputs()160 (common_type == DataType::Type::kFloat32 && input_type == DataType::Type::kReference) || in TypePhiFromInputs()161 (common_type == DataType::Type::kReference && input_type == DataType::Type::kFloat32)); in TypePhiFromInputs()168 phi->SetType(common_type); in TypePhiFromInputs()[all …]