0
votes
1answer
85 views

PowerShell 3.0 - Setting Affinity to CPU per USER's PROCESS

my first post here. I am working on a script using powerShell, the objective is to set a certain amount of CPU-threads per USER's process, using the forum here, i was able to find most of the answers, ...
2
votes
2answers
187 views

To set the affinity of CPUs using C#

I have created a window application in C#.Now I want to set the CPU affinity for this application.I may have 2 processors,4 processors,8 processors or may be more than 8 processors. I want to set the ...
1
vote
1answer
255 views

Set thread processor affinity in Microsoft .Net

(Posting this with answer because I couldn't find a full explanation of how to do this anywhere, so I thought it might have some value for someone) How can I set the processor affinity of a ...
3
votes
5answers
490 views

Why is it that restricting multithreaded applications to one core make it run faster?

I have a native multithreaded Win32 application written in C++ which has about 3 relatively busy threads and 4 to 6 threads that don't do that much. When it runs in a normal mode total CPU usage adds ...
0
votes
0answers
83 views

Why cpu run slower? [closed]

I was running very simple pi test on the multicore machine, and I set the processor affinity as following: cat pi.sh #!/bin/bash { time -p echo "scale=5000; 4*a(1)" | bc -l -q;} 2>&1 |grep ...
0
votes
2answers
391 views

How to enforce CPU Socket affinity?

I know that there are ways to enforce thread/process effinity to bind a perticular thread/process to a cpu/core in various OSs. I am just wondering if there is a way to enforce the CPU Socket ...
17
votes
4answers
13k views

how to set CPU affinity of a particular pthread?

I'd like to specify the cpu-affinity of a particular pthread. All the references I've found so far deal with setting the cpu-affinity of a process (pid_t) not a thread (pthread_t). I tried some ...
7
votes
3answers
6k views

how to set CPU affinity of a program?

I have a program written in C#, I am using VSTS 2008 + .Net 3.5 + Windows Vista Enterprise x86 to develop a Windows Forms application. My current computer is dual-core CPU, I want to set CPU affinity ...