SELECT
    count(gender) male_num,
    avg(gpa) avg_gpa
from
    user_profile
WHERE
    gender = 'male'
;