Searched refs:common_type (Results 1 – 1 of 1) sorted by relevance
127 DataType::Type common_type = phi->GetType(); in TypePhiFromInputs() local137 if (common_type == input_type) { in TypePhiFromInputs()139 } else if (DataType::Is64BitType(common_type) != DataType::Is64BitType(input_type)) { in TypePhiFromInputs()142 } else if (DataType::IsIntegralType(common_type)) { in TypePhiFromInputs()148 common_type = input_type; in TypePhiFromInputs()152 DCHECK(DataType::IsFloatingPointType(common_type) || in TypePhiFromInputs()153 common_type == DataType::Type::kReference); in TypePhiFromInputs()157 (common_type == DataType::Type::kFloat32 && input_type == DataType::Type::kReference) || in TypePhiFromInputs()158 (common_type == DataType::Type::kReference && input_type == DataType::Type::kFloat32)); in TypePhiFromInputs()165 phi->SetType(common_type); in TypePhiFromInputs()[all …]