llvmpipe: Use number of CPUs as default number of threads.

Also bump MAX_THREADS to 8.
This commit is contained in:
José Fonseca
2009-12-08 08:02:49 +00:00
parent 73e13c33fd
commit 7f457acabc
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -27,6 +27,7 @@
#include "util/u_memory.h"
#include "util/u_math.h"
#include "util/u_cpu_detect.h"
#include "lp_debug.h"
#include "lp_state.h"
@@ -639,7 +640,8 @@ create_rast_threads(struct lp_rasterizer *rast)
{
unsigned i;
rast->num_threads = debug_get_num_option("LP_NUM_THREADS", MAX_THREADS);
rast->num_threads = util_cpu_caps.nr_cpus;
rast->num_threads = debug_get_num_option("LP_NUM_THREADS", rast->num_threads);
rast->num_threads = MIN2(rast->num_threads, MAX_THREADS);
/* NOTE: if num_threads is zero, we won't use any threads */
+1 -1
View File
@@ -32,7 +32,7 @@
#include "lp_rast.h"
#define MAX_THREADS 4 /* XXX probably temporary here */
#define MAX_THREADS 8 /* XXX probably temporary here */
struct pipe_transfer;