diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-03-18 15:47:19 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-03-18 15:47:19 +0000 |
commit | 31caec794c3978d55d79f715f21fb72948c9f300 (patch) | |
tree | 475474eb40efe84d3696177054dea9867c0f9261 /rts | |
parent | 7583384214ed6aa4a90d77c5975728a9b06149f2 (diff) | |
download | haskell-31caec794c3978d55d79f715f21fb72948c9f300.tar.gz |
Set thread affinity with +RTS -qa (only on Linux so far)
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RtsFlags.c | 6 | ||||
-rw-r--r-- | rts/Schedule.c | 4 | ||||
-rw-r--r-- | rts/posix/OSThreads.c | 27 | ||||
-rw-r--r-- | rts/win32/OSThreads.c | 6 |
4 files changed, 42 insertions, 1 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c index 3fac86bf4e..6a8c692bd9 100644 --- a/rts/RtsFlags.c +++ b/rts/RtsFlags.c @@ -233,6 +233,7 @@ void initRtsFlagsDefaults(void) RtsFlags.ParFlags.parGcEnabled = 1; RtsFlags.ParFlags.parGcGen = 1; RtsFlags.ParFlags.parGcLoadBalancing = 1; + RtsFlags.ParFlags.setAffinity = 0; #endif #ifdef PAR @@ -476,6 +477,8 @@ usage_text[] = { " -N Determine the number of processors to use automatically", " -q1 Use one OS thread for GC (turns off parallel GC)", " -qg<n> Use parallel GC only for generations >= <n> (default: 1)", +" -qb Disable load-balancing in the parallel GC", +" -qa Use the OS to set thread affinity", " -qm Don't automatically migrate threads between CPUs", " -qw Migrate a thread to the current CPU when it is woken up", #endif @@ -1233,6 +1236,9 @@ error = rtsTrue; case 'b': RtsFlags.ParFlags.parGcLoadBalancing = rtsFalse; break; + case 'a': + RtsFlags.ParFlags.setAffinity = rtsTrue; + break; case 'm': RtsFlags.ParFlags.migrate = rtsFalse; break; diff --git a/rts/Schedule.c b/rts/Schedule.c index 666b59e3e3..636b5179ad 100644 --- a/rts/Schedule.c +++ b/rts/Schedule.c @@ -2125,6 +2125,10 @@ workerStart(Task *task) cap = task->cap; RELEASE_LOCK(&task->lock); + if (RtsFlags.ParFlags.setAffinity) { + setThreadAffinity(cap->no, n_capabilities); + } + // set the thread-local pointer to the Task: taskEnter(task); diff --git a/rts/posix/OSThreads.c b/rts/posix/OSThreads.c index 6eb2d2bc8e..f15fc95c3a 100644 --- a/rts/posix/OSThreads.c +++ b/rts/posix/OSThreads.c @@ -7,8 +7,9 @@ * * --------------------------------------------------------------------------*/ -#if defined(DEBUG) && defined(__linux__) +#if defined(__linux__) /* We want GNU extensions in DEBUG mode for mutex error checking */ +/* We also want the affinity API, which requires _GNU_SOURCE */ #define _GNU_SOURCE #endif @@ -26,6 +27,10 @@ #error pthreads.h is required for the threaded RTS on Posix platforms #endif +#if defined(HAVE_SCHED_H) +#include <sched.h> +#endif + /* * This (allegedly) OS threads independent layer was initially * abstracted away from code that used Pthreads, so the functions @@ -197,6 +202,26 @@ getNumberOfProcessors (void) return nproc; } +// Schedules the thread to run on CPU n of m. m may be less than the +// number of physical CPUs, in which case, the thread will be allowed +// to run on CPU n, n+m, n+2m etc. +void +setThreadAffinity (nat n, nat m) +{ +#if defined(HAVE_SCHED_H) && defined(HAVE_SCHED_SETAFFINITY) + nat nproc; + cpu_set_t cs; + nat i; + + nproc = getNumberOfProcessors(); + CPU_ZERO(&cs); + for (i = n; i < nproc; i+=m) { + CPU_SET(n, &cs); + } + sched_setaffinity(0, sizeof(cpu_set_t), &cs); +#endif +} + #else /* !defined(THREADED_RTS) */ int diff --git a/rts/win32/OSThreads.c b/rts/win32/OSThreads.c index 929b8171e7..c18bab2d09 100644 --- a/rts/win32/OSThreads.c +++ b/rts/win32/OSThreads.c @@ -246,6 +246,12 @@ getNumberOfProcessors (void) return nproc; } +void +setThreadAffinity (nat n STG_UNUSED, nat m STG_UNUSED) +{ + /* ToDo */ +} + #else /* !defined(THREADED_RTS) */ int |