Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
2k views

CPU Affinity

Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
7
votes
2answers
159 views

What could cause my program to not use all cores after a while?

I have written a program that captures and displays video from three video cards. For every frame I spawn a thread that compresses the frame to Jpeg and then puts it in queue for writing to disk. I ...
7
votes
2answers
5k 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 ...
6
votes
3answers
978 views

Why would one CPU core run slower than the others?

I was benchmarking a large scientific application, and found it would sometimes run 10% slower given the same inputs. After much searching, I found the the slowdown only occurred when it was running ...
6
votes
7answers
9k 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 ...
4
votes
1answer
301 views

Why does NextValue call of performanceCounter change thread affinity mask

I have a C# project, where I have to both access the current workload of my processor, and ensure, that I run some specific code on every kernel of the processor. My problem is, that accessing the ...
4
votes
4answers
823 views

Code for detecting APIC id returns same ids for different logical processors

I run my NT service on an Intel Core2 based Win2k3 machine where I need to iterate through all logical CPUs (all bits in process affinity). To do so I call GetProcessAffinityMask() to retrieve the ...
3
votes
1answer
363 views

Set affinity with start /AFFINITY command on Windows 7

I am using the start /AFFINITY [n] [.exe] command to start an executable with the specified affinity. I have a system with 8 processors (1,2,3,4,5,6,7,8). I'd like to set the process to use all of ...
3
votes
1answer
329 views

Do the changes to cpumask using sched_setaffinity() take place immediately

I am writing a linux kernel module that needs to pin two threads on two different cpus. I am planning to use sched_setaffinity() after exporting it in the kernel. Is there any other exported function ...
3
votes
3answers
4k 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 ...
3
votes
2answers
546 views

Setting affinity in multicore x86 processors

( I ask because it was before serious SMP and multicore that I studied OS. I like to have some vision of how code is being executed. ) If I have a multicore x86 CPU booting directly into my program. ...
2
votes
1answer
73 views

Cpu affinity inherited by child process

I have a server process that forks many child processes, server process has affinity to cpu core, i don't want that affinity to be inherited by child process (rather os should handle where to run ...
2
votes
1answer
108 views

Set Java Multithreading Affinity

I'm using IntelliJ with the ForkJoin framework, and am trying to benchmark two versions of my code. One is using forkjoin, one is sequential. Unfortunately, it seems that the JDK/Windows ...
2
votes
2answers
850 views

Whas 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: 1) Get thread id using pthread_self() Set CPU affinity ...
2
votes
2answers
432 views

WF4 Affinity on Windows Azure and other NLB environments

I'm using Windows Azure and WF4 and my workflow service is hosted in a web-role (with N instances). My job now is find out how to do an affinity, in a way that I can send messages to the right ...
2
votes
5answers
10k views

How to set processor affinity from Batch File for Windows XP?

I've got a dual processor machine and I would like to launch an executable via a batch file on both processors. For example: (1) Launch Notepad.exe on Processor 1, and (2) Simultaneously, ...
2
votes
3answers
1k views

Mapping logical processors to physical processors

On a dual quad-core GetProcessAffinityMask (or the dialog from "Set affinity" in taskman.exe) will report eight logical processors. How do I find out which logical processor is on which physical ...
1
vote
1answer
46 views

How does a cpumask affect scheduling of other processes in the linux kernel?

I'm using a linux 2.6.x kernel on my machine which has ubuntu installed (Ubuntu is just mentioned in case this changes anything). The kernel runs on a machine that has 8 cores. The machine also runs ...
1
vote
2answers
120 views

Performance of running a multithreaded program on a single core by setting affinity?

In short: Under what scenarios can running a multithreaded app on a single core destroy performance? What about setting the affinity of a multithreaded app to only use one core? In long: I'm ...
1
vote
2answers
139 views

setting cpu affinity for linux kernel, not process [closed]

I am having a hard time finding information about how to set cpu affinity for linux kernel (with all of its loaded modules), NOT for a specific process. This is because I want the kernel to run on ...
1
vote
2answers
307 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
1answer
110 views

How to find the thread affinity in Linux other than using the affinity mask?

We have an embedded MIPS 2-core processor running SMP Linux (2.6.18). We are planning to assign the affinity of the main GUI threads to one of the two cores, and the other core used for driver/data ...
1
vote
3answers
79 views

These days, what are good reasons for setting thread affinity rather than leaving it to the OS?

Searching answers here for "thread affinity", I see a lot of interest in doing it but little justification for it save possibly getting stable QueryPerformanceTimer results. Assuming a modern OS and ...
1
vote
0answers
69 views

Replicate Process Affinity/Priority to another Process

I have a C# NET application that manages a Java process. When my app starts, it starts up the java process, and keeps it running until my application is shut down. I am working on making it so that ...
1
vote
1answer
136 views

Setting thread affinity for WCF DuplexChannelFactory service

Is it possible to set the thread affinity for a WCF service? When I instantiate my service I want all of it's processing to be constrained to a single core. Thanks in advance.
1
vote
2answers
148 views

SethreadAffinityMask() correct usage?

I have 1500 threads..I want them to run on 12 processors... To do that I call SetThreadAffinityMask(GetCurrentThread(),1<<(threadnum%numprocessors)); where numprocessors=12. Is that correct ...
1
vote
1answer
410 views

How do I replace SetProcessAffinityMask()/GetProcessAffinityMask() for systems with more than 32 cores?

SetProcessAffinityMask() function accepts a DWORD mask so it can't be used correctly on systems with more than 32 processors. Looks like SetThreadGroupAffinity() is intended to somehow address the ...
1
vote
2answers
239 views

Is it possible to prevent children inheriting the CPU/core affinity of the parent?

I'm particularly interesting in doing this on Linux, regarding Java programs. There are already a few questions that say you have no control from Java, and some RFEs closed by Sun/Oracle. If you have ...
1
vote
1answer
111 views

How to build/mantain an affinity score between 2 users?

I mean analyzing 2 users profiles I get a score that it is reciprocal a.affinity(b) == b.affinity(a) I'd like to know in particular: which schema would u use to implement the affinity table which ...
1
vote
1answer
807 views

Setting process affinity in kernel mode

How can the CPU affinity of a process be set in kernel module? In user mode there is a syscall sched_setaffinity, but I am looking for the kernel mode equivalent. In the Linux kernel code, there is ...
0
votes
1answer
28 views

Get process and thread affinity mask on Linux

On Windows, there exists the GetProcessAffinityMask API call, and there also exists a roundabout way of finding the thread affinity mask, seen here: Query thread (not process) processor affinity? Is ...
0
votes
1answer
18 views

Force a specific processor affinity on an unmanaged DLL call from VB.NET

I am calling a function from a VB.NET webserver to a custom written unmanaged DLL. If we call this DLL via a webservice on a multi-core server we run into problems and it always crashes. If I reboot ...
0
votes
1answer
36 views

Shared (Web-Farm) ASP.NET Web Two-Tiered Environment

If you using a F5 load balancer (sticky sessions) in front of the web-tier, can I have a shared two-tiered web application environment that can have web-applications with two different session ...
0
votes
1answer
79 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
3answers
119 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
2answers
100 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 ...
0
votes
1answer
238 views

Setting CPU affinity using taskset

I am using the taskset tool to set CPU affinity for one of my programs. How do I set the affinity on a single CPU only - since I was not sure about this, so I was doing this: taskset -c 2-2 ...
0
votes
0answers
209 views

core affinity for android loadable kernel module

I have android-2.2.1 powered dual core Motorola Atrix and i want to write a loadable kernel module that spawns kernel threads to each core. To do this i have to set core affinity. I think kthread_bind ...
0
votes
1answer
121 views

Difference in Event Handling in Silverlight and WPF - Thread Affinity issues

I have been developing a Lync Silverlight application in Silverlight and now I am trying to shift it to WPF. However, I am facing some thread affinity issues. For example I display the Lync client's ...
0
votes
1answer
412 views

Is it possible to set pthread CPU affinity in OS X?

In Linux there is a sched_setaffinity() function defined in sched.h, but I can't seem to find anything like that in Mac OS X 10.6 pthreads implementation... If it is not possible to set affinity, what ...
0
votes
1answer
446 views

Setting “task affinity” programatically

is there a way to set the "task affinity" programatically? I mean like with some Intent flag or sth? I didn't found anything about this being possible in the Android docs. Setting the affinity in a ...
0
votes
3answers
233 views

Benchmarking processor affinity impact

I'm working on a NUMA architecture, where each compute node has 2 sockets and 4 cores by socket, for a total of 8 cores by compute node, and 24GB of RAM by node. I have to proof that setting processor ...
0
votes
1answer
235 views

if I do sched_setaffinity in a process, do the threads spawned by it get affected

If I do this : CreateThreads, setsched_affinity to CPU 0, then will all the threads also have affinity to CPU 0 If instead I reverse the sequence of action i.e. set_schedaffinity first and then create ...
0
votes
4answers
171 views

Threads and CPU Affinity

Lets say there are two processors on a machine. Thread A is running on P1 and Thread B is running on P2. Thread A calls Sleep(10000); Is it possible that when Thread A starts executing again, it ...
0
votes
2answers
181 views

implementing include/sched.h functions

I wanted to study how threads can be assigned manually to specific cores on a multi core machine. I found that include/sched.h defines some macros and functions (sched_setaffinity, etc.)that can help ...
0
votes
2answers
698 views

Processor affinity settings for Linux kernel modules?

In Windows, I can set the processor affinity of driver code using KeSetSystemAffinityThread, and check which processor my code is running on using KeGetCurrentProcessorNumber. I'm trying to do ...
0
votes
2answers
252 views

Negate Unsigned Number in Bash

I have a number (hex) and I want the one's complement of it. For example if X = 20 I want bash to perform a negation and return Y = ~X = DF. It doesn't have to be in bash, but it should use a common ...
0
votes
1answer
130 views

Does set affinity ensure that only one core resources are used?

I just wanted to find out if setting cpu affinity ensure that the application runs only on that core ?
0
votes
1answer
328 views

Parent window and thread affinity

I'm having a WinForms application where I would like to perform some long-running operations, e.g. imagine Explorer copying 2 big files in parallel. For each of those long-running operations I'm ...
-1
votes
2answers
82 views

setting processor affinity with C++ that will run on Linux [closed]

Possible Duplicate: CPU Affinity I'm running on Linux and I want to write a C++ program that will set 2 specific processors that my 2 applications that will run in parallel (i.e. setting ...