Searched refs:hw_threads (Results 1 – 1 of 1) sorted by relevance
972 unsigned hw_threads, num_comp_hi_threads, num_comp_lo_threads; in radeonsi_screen_create_impl() local1074 hw_threads = sysconf(_SC_NPROCESSORS_ONLN); in radeonsi_screen_create_impl()1076 if (hw_threads >= 12) { in radeonsi_screen_create_impl()1077 num_comp_hi_threads = hw_threads * 3 / 4; in radeonsi_screen_create_impl()1078 num_comp_lo_threads = hw_threads / 3; in radeonsi_screen_create_impl()1079 } else if (hw_threads >= 6) { in radeonsi_screen_create_impl()1080 num_comp_hi_threads = hw_threads - 2; in radeonsi_screen_create_impl()1081 num_comp_lo_threads = hw_threads / 2; in radeonsi_screen_create_impl()1082 } else if (hw_threads >= 2) { in radeonsi_screen_create_impl()1083 num_comp_hi_threads = hw_threads - 1; in radeonsi_screen_create_impl()[all …]