The affinity tag has no wiki summary.
1
vote
2answers
101 views
Set processor affinity for current thread on Mono (Linux)
I'm writing a custom task scheduler, and I would like to know if there is any way of setting the processor affinity for the current thread on Mono (running on Linux).
For the .NET runtime running on ...
0
votes
2answers
16 views
I am using ab as benchmark tool for performance analysis on apache server
I am using AB as benchmark tool for performance analysis on apache server.
Is there any way, we can restrict the AB request to specific CPU cores by setting their mask?
I tried with ...
0
votes
1answer
32 views
Load balancing: one user, multiple devices to same server
I have the following situation: A user logs in in a ASP.NET MVC4 app using a PC. This app is running on multiple IIS servers, behind a load balancer. After this a SignalR connection between the server ...
0
votes
1answer
43 views
Set CPU Affinity in PHP?
Pretty straightforward question - is there a way to set the CPU affinity via PHP? Any of the following will do:
Setting the affinity of the current process via a PHP call.
Setting the affinity of a ...
1
vote
1answer
35 views
Are there any charges for affinity group in Windows Azure and how to move existing services together
I came across with affinity group terms and it's tells that it will increase performance and reduce bill somehow. what i want to know that
Is there any charges for creating affinity group?
Is it ...
0
votes
1answer
32 views
Loop read.transactions over multiple datasets
I have a large number of files that I want to separately run read.transactions() on (part of the ARULES package).
I'd like to do something like this:
x_1 = read.transactions(file_1.csv,...); rules_1 ...
0
votes
0answers
74 views
Changing CPU affinity affects performance of other functions
I have a code in C which has the following overall framework:
while (err > tol){
func_A();
func_B();
func_C();
func_Par();
}
The codes are changing some global variables and this ...
18
votes
4answers
14k 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 ...
5
votes
2answers
5k views
What is the difference between pthread_self() and gettid()? Which one should I use?
I'm trying to set the CPU affinity of threads on Linux. I'd like to know which one of the following approaches is recommended:
Get thread id using pthread_self()
Set CPU affinity using ...
1
vote
2answers
196 views
Obtaining thread Core affinity in C++ 11 through pthreads
I'm trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I've already searched around various topics and on the internet ...
0
votes
0answers
24 views
Run Tomcat 6 on all cores
Tomcat 6 is running on a linux server with 32 cores, but what I found is it is only using 1 core with 100% usage and rest of the cores are idle.
I figured out that we can set affinity of a process to ...
1
vote
0answers
61 views
Compute affinity matrix from distance matrix
I used clustal omega to get a distance matrix of 500 protein sequences (they are homologous to each other).
I want to use affinity propagation to cluster these sequences.
Initially, because I ...
0
votes
1answer
110 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, ...
0
votes
0answers
35 views
understanding unix taskset output
I am running unix command taskset -p <PID> on a linux machine and it is returning output as "cpu affinity : 3", but if I check /proc/cpuinfo, it lists as "processor : 1, cpu cores : 2, siblings ...
0
votes
0answers
21 views
Changing affitnity by system call
I'm developing a system call to Ubuntu kernel version 3.7.2, that will recive some processes and a cpu number, and i want to make this processes running only on this cpu.
i founded the variable ...
0
votes
0answers
23 views
What does it mean for tomcat when process affinity is 1. What effects does changing affinity have on Tomcat
Tomcat is running with affinity 1.
Should this be changed because I have the impression that only one CPU is being utilized when I check with the "TOP" command.
If the affinity is changed to another ...
1
vote
1answer
561 views
How can I ensure that a process runs in a specific physical CPU core and thread?
This question asks about ensuring two processes run on the same CPU. Using sched_setaffinity I can limit a process to a number of logical CPUs, but how can I ensure that these are mapped to specific ...
0
votes
0answers
12 views
AffinityMask to a DLL
I have a software (VS2010) consists of an executable and several DLLs.
I need to force the executable and two DLL to run on a single processor.
Is there any way?
Thank you.
2
votes
1answer
78 views
Process affinity in Windows Phone
I WP library project, I am trying to bind the heavy-lifting process to the hardware thread (0 or 1). So the app consuming the library use other available core.
Can we set process affinity in Windows ...
0
votes
0answers
78 views
Starting an executable using /affinity in cmd.exe (Windows XP)
I have a program that I'm trying to use which crashes often, and one of the fixes for this is to set it to only use one processor.
I can easily do this through task manager manually, but I'd much ...
2
votes
1answer
81 views
Pin processor CPU Isolation on Windows
In linux where I work mostly, we use a technique called CPU isolation, that effectively locks a process on to a processor and also prevents the processor from running anything else. Our kernel guys ...
0
votes
0answers
91 views
Change affinity (not priority) process with WMI
In C# app and WMI I try to change the proccess's affinity (like the taskmanager).
I must do it for a remote computer. System.Diagnostics don't do that.
I don't find WMI classes.
There are somes ...
0
votes
0answers
55 views
Route message to specific JVM in cluster with low overhead- Websphere
We have application deployed in Websphere 7 cluster of around 100 JVMs.
Currently any JVMs of cluster can process the message which is good for horizontal scalability; however it has a drawback in ...
2
votes
0answers
71 views
How do I set CPU affinity while running a C code from Eclipse in Ubuntu?
I am able to do this from terminal using 'taskset -c 0 ./out'.
How can I do the same from Eclipse?
0
votes
0answers
64 views
Network Interface Interrupt handler affinity
I need to set the CPU affinity of network interfaces interrupt handlers (that run when a packet arrives).
I know that I need to obtain the correct IRQ number for that.
Whats is the best way to get ...
1
vote
3answers
188 views
Pros and Cons of CPU affinity
Suppose I have a multi-threaded application (say ~40 threads) running on a multiprocessor system (say 8 cores) with Linux as the operating system where different threads are more essentially LWP ...
1
vote
1answer
189 views
Affinity Groups in Azure
I don't understand why some Azure resources can be aligned with an Affinity Group, but others can't.
Example: I just tried creating a Service Bus namespace. I'd like to align it with an existing ...
2
votes
2answers
226 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 ...
3
votes
2answers
1k views
How to use sched_getaffinity(2) and sched_setaffinity(2) . Please give code sample to use in C program
I am trying to
Run 16 copies concurrently with processor pinning (2 copies per core)
Run 8 copies concurrently with processor pinning (2 copies per core) and flipping processor core to the furthest ...
1
vote
1answer
71 views
Setting application affinity in gdb
Is there a simple way of setting the affinity of the application I'm debugging without locking gdb to the same core? The reason why I'm asking is that the application is running with real time ...
0
votes
1answer
114 views
error: undefined reference to `sched_setaffinity' on windows xp
Basically the code below was intended for use on linux and maybe thats the reason I get the error because I'm using windows XP, but I figure that pthreads should work just as well on both machines. ...
2
votes
3answers
367 views
Is there a way to set thread affinity to a processor core with the boost thread library?
And would it be a good idea to do so if I needed the processor cores running on 100% for a dozen seconds or would I get better performance if I let the system decide how to handle the threads?
What I ...
2
votes
1answer
106 views
VB.net Process Affinity
Goal: My goal is to set all running processes's affinity to 1 core. Then launch a program with the affinity of all the cores.
Skill Lvl: My skill level in programming in general is pretty much ...
1
vote
2answers
3k views
Linux find out Hyper-threaded core id
I spent this morning trying to find out how to determine which processor id is the hyper-threaded core, but without luck.
I wish to find out this information and use set_affinity() to bind a process ...
1
vote
4answers
654 views
How to implement affinity on multi-core HT with topological considerations in a C++ program?
I'm developing some C++ multi-core programs with a variable number of threads and I'd like to know how to set a proper (actually "the best") affinity. I use Boost-threads, so I can call ...
0
votes
1answer
90 views
can irq smp_affinity replace the rps(recieve package steering)?
I have a Netcard eth0, it has sigle queue, and its IRQ number is 63,
my question is:
if i set /proc/irq/63/smp_affinity to fffff
whether means that the linux kernel will distribute the irq of eth0 ...
19
votes
3answers
5k views
CPU Affinity
Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
3
votes
5answers
516 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 ...
8
votes
8answers
15k views
How to set processor affinity on an executable in Windows XP?
I have a quad core system with third party application that once in a while spins several processes (always the same executable but several instances of it) and takes 100% of CPU time. I also have a ...
1
vote
1answer
272 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 ...
1
vote
0answers
172 views
Can't change ethernet card smp_affinity when using bonding driver [closed]
I'v got a server with 2x1Gb nics, 8 cores CPU. The nics are bonded using bonding driver with mode 803.2ad. I faced the problem with changing network cards' affinity . The irq interrupts cumming from ...
0
votes
1answer
134 views
How to install python-affinity package on Debian?
I hope this is the correct place instead of Unix User of Stack Overflow etc;
How do I install the Python package affinity on Debian Squeeze?
I have downloaded the tar, unpacked it, and ran the ...
1
vote
1answer
146 views
CPU hot plugging and strict 1:1 threading
I wish to add support for CPU hot plugging in my application that has strict affinity rules. Each physical core has exactly one thread pinned to it, but the logic I use for pinning a thread to a CPU ...
0
votes
0answers
102 views
Set affinity equivalent for Linux [closed]
I am looking for an equivalent way to start an executable on Linux to the windows start AFFINITY command, i.e.
start /AFFINITY [n] [.exe]
I've played with taskset, but besides permission issues it ...
0
votes
0answers
84 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 ...
1
vote
2answers
643 views
How can I programatically set the affinity of all running processes in WIndows 7?
Is there any way to set the affinity for all running processes in Windows 7?
I want to run some hyperthreading benchmarks, and I want to ensure that they're running alone on a certain core. I'm ...
0
votes
0answers
266 views
remove CPU affinity at some point
i am using sched_setaffinity to bind OpenMP threads to specific core. now i want to remove the affinities at some other points of the program. how can i achieve this? can anyone show simple example.
...
1
vote
2answers
694 views
assign two MPI processes per core
How do I assign 2 MPI processes per core?
For example, if I do mpirun -np 4 ./application then it should use 2 physical cores to run 4 MPI processes (2 processes per core). I am using Open MPI 1.6. I ...
2
votes
1answer
308 views
Linux CPU affinity for all system processes
Is there a way to set all system processes other than my own process' threads to their own CPU without manually setting each pid.
I am using C on Fedora and would like to set this on program start ...
0
votes
1answer
179 views
setting affinity with taskset nt work
When I want to set an affinity to a process like this:
sudo taskset -c 0 -p 30466
I get this error:
taskset: executing -p failed: No such file or directory
However top command shows the process ...



