How to set processor affinity on OS X?

34,701

Solution 1

OS X has supported a thread affinity API since version 10.5. Here is some relevant material from the webpage I linked to.

Affinity Set

An affinity set is a collection of threads which share memory resources and wish to share an L2 cache. Distinct affinity sets represent separate affinities—that is, threads belonging to a different set should use a separate L2 cache and hence be run on a different logical processors.

An affinity set is identified by a "tag". Threads are assigned to a particular affinity set by assigning it the tag identifying that set. A thread can belong to at most one affinity set; that is, it has one affinity tag.

Effect of Setting Distinct Affinity Tags

For example, an application wanting to run 2 threads on separate L2 caches would set the threads with different affinity tags. On a dual core machine, this affinity will effectively be ignored. However, on a 4-core MacPro, the scheduler will try to run threads on separate packages. Similarly, on an 8-core MacPro, the scheduler will try to run these threads on separate dies (which may or may not be in the same physical CPU package).

Example Usage

An application that wants to place a thread on every available processor would do the following:

  • Obtain the number of processors on the system using sysctl(3).
  • Create that number of threads.
  • Set each thread with a distinct affinity tag.
  • Start all threads.

Threads with default affinity policy will be scheduled more freely on any processor. These threads will be preferentially migrated to run on an idle processor. Threads with affinity tags will tend to remain in place.

Consult the source for code listings, and information about the sharing of affinity tags between parent and child processes, obtaining the CPU cache configuration, and more.

Solution 2

http://developer.apple.com/mac/library/releasenotes/Performance/RN-AffinityAPI/

Mac OS X does not export interfaces that identify processors or control thread placement—explicit thread to processor binding is not supported. Instead, the kernel manages all thread placement. Applications expect that the scheduler will, under most circumstances, run its threads using a good processor placement with respect to cache affinity.

Solution 3

Until now, the XNU (1504.3.12) scheduler doesn't implement processor affinity for processes nor threads.

So MacOSX doesn't provide any means to do that.

Solution 4

From http://images.apple.com/macosx/docs/OSX_for_UNIX_Users_TB_July2011.pdf

• Efficient kernel threads. Each POSIX thread is queued onto a particular CPU, improving processor affinity and scalability while reducing lock contention. Threads conform to POSIX (1c), including support for cancellation and shared mutexes.

It looks like ad to me, my iMac running Lion looks to respect that most of the time, but it do not 'pin'a process to a core.

I could not find any API to control process affinity for darwin anyway.

Share:
34,701

Related videos on Youtube

Troggy
Author by

Troggy

Updated on September 17, 2022

Comments

  • Troggy
    Troggy almost 2 years

    How do you set processor affinity in Snow Leopard on a MacBook Pro?I know in Windows you could just switch it in Task Manager.

    • zildjohn01
      zildjohn01 about 14 years
      <snarky-comment>Run OS X in a virtual machine, and set the affinity of the virtual machine</snarky-comment>
    • Kusek
      Kusek about 14 years
      Why would you want to do this? It's generally a bad idea unless you're trying to get old programs running that are so badly coded they break on multicore systems.
    • Admin
      Admin about 14 years
      @jalf: processor affinity can improve performance since it reduces cache invalidation & trashing in some cases.
    • Evan Plaice
      Evan Plaice over 13 years
      That's disappointing. Looks like Mac will never be an ideal platform for real-time software development.
    • Jano
      Jano almost 12 years
      @jweyrich Excepts in CPUs with QPI (Intel's NUMA) like those on the Mac Pro, where setting CPU affinity disables memory affinity and decreases performance. This does not apply to mobile processors though.
    • RandomInsano
      RandomInsano almost 8 years
      In our case, many applications don't support limiting the number of cores while crunching hard data, so the naïve approach to keeping a system responsive on the other platforms has been to deny the different apps access to all cores.
  • void-pointer
    void-pointer about 10 years
    OS X has supported a thread affinity API since version 10.5. See my answer for details.
  • Victor Eijkhout
    Victor Eijkhout about 5 years
    Is there a commandline utility, in addition to this API?