How to choose between process core binding and thread core binding ?

If i have process P1 which contain two thread T1 and T2,
then is it good to bind whole process to core C1 or To bind thread T1 to core C1 and T2 thread to C2 core.

Which will give more performance ?
If we assume C1 thread can consume CPU upto 80% and C2 thread consuming CPU to 10% for a single core.
T1 to C1 and T2 to C2, ceteris paratus. It's unlikely to be worse than P1 bound to single core.

However, if there are other processes on the box, your overage mileage may vary ;)
Topic archived. No new replies allowed.