Home > Articles > Programming

The Pitfalls of Parallelism

David Chisnall looks at some of the pitfalls that face programmers who try to add parallelism to applications without understanding the underlying architecture.
Like this article? We recommend

If you have a workload that can be parallelized, you most likely start by splitting it into threads. Then you get a processor that has more cores—you expect it to go faster. Often, you're lucky and it does. This article looks at some of the reasons why that's not always the case.

Understanding Cache Coherency

When you have multiple processors, you end up having multiple caches whether they're on the same die or not. Normally, caches make things faster. They optimize for locality of reference by keeping recently accessed data around near the processor so that the processor doesn't have to wait for a message to go all the way out to the main memory and come back again.

For a multiprocessor system, caches introduce a problem. If one processor updates some memory, the write will first go to its level 1 cache, then its level 2 cache, and then eventually to main memory. If another processor tries to read from that bit of memory, it may see the old value.

The solution is for the hardware to implement a cache coherency protocol. This is sometimes referred to as a MESI (pronounced messy) protocol, after the canonical protocol that provides the required guarantees, although in modern implementations it is typically more complex.

MESI stands for Modified, Exclusive, Shared, Invalid. The protocol associates one of these four states with each cache line. Initially, each line is invalid. When you load from main memory, the line moves to the shared state. This doesn't mean that it is shared; just that might be shared.

Before a core can write to a cache line, it must move it to the exclusive state. This process involves sending a message to every other core, telling it to invalidate its version of the cache line in the shared state. If a core tries to load a line that another has in the exclusive state, it will tell the other core to move its version back to the shared state.

Once a core has the line in the exclusive state, it can execute store instructions and write to the cache line, which triggers a transition to the modified state. When another core tries to load the cache line from main memory, it will instead get the modified version and return the state of the modified line to shared.

Synchronization Overheads

Although modern processors contain a lot of optimizations to improve on the basic MESI protocol, the basic principle remains the same. This means that any time you force two processors to have the same view on memory, they will spend a lot of time sending messages and, most importantly, waiting for the results.

By default, the memory model is sequentially consistent on x86. This means that there exists a linear sequence of memory operations that matches the view that all cores see. For example, if one core writes a value to X and then another value to Y, then (independent of their location in memory) another core may either see the new value of X and the old value of Y, the new value of both, or the old value of both. It might not see the old value of X and the new value of Y because that would mean that it observed a sequence of memory operations that was incompatible with the order that another core saw.

This imposes a lot of overhead, which is why most other architectures are weakly ordered, meaning that they have no (or fewer) such guarantees except in the presence of explicit memory barrier instructions.

Although this can make things cheaper in the general case, when synchronization is required, the barrier instructions can often pause the entire pipeline, which can have a noticeable impact on serial performance.

More importantly, the cost of acquiring an exclusive cache line can be around 300 cycles. If you test code without contention, on x86 an atomic add instruction can be only three or so times slower than the non-atomic version. When another thread has the cache line, it can be more than 300 times slower.

On a weakly ordered architecture, you can often get a significant speedup if you don't care whether a thread gets old values. For example, in a lockless ring buffer shared between two threads, with free-running counters indicating the producer and consumer pointers, if one thread gets a stale value, it doesn't matter very much because it will just wait a bit before getting or inserting a value. It can harm throughput if it happens too often, but either batching updates or requesting a weaker consistency model can reduce the amount of inter-processor traffic and may increase throughput.

False Sharing

This slowdown is bad enough when you actually do want to have one thread reading a value and one writing a value. It's far worse when it's accidental, however.

Remember that the processor deals only with cache lines. A typical cache line size for a modern processor is 64 bytes, which leads to two bad cases. First, consider the simple multiword consistent update algorithm between a single producer and one or more consumers. The producer increments a counter, issues a memory barrier to ensure that the update is visible, writes the data, updates the counter, and then issues another barrier.

The consumer reads the counter, reads the data, and reads the counter again. If the low bit of the counter is one, or the value has changed, the consumer loops. On some architectures, the consumer requires some memory barriers to ensure that writes from other processors are visible.

If all the data fits into a single cache line, it is likely to go a lot faster than if the counter is in one cache line and the remainder of the data is in the next, for example.

By default on most operating systems, malloc() will return values aligned to a boundary that satisfies the greatest alignment requirements of a primitive type—typically 16 bytes for x86 (some AVX instructions require 32-byte alignment, but compilers generally won't emit those unless a type is explicitly aligned). This means that you have a 25 percent chance that a malloc()'d data structure will start on a cache line boundary. The same is true for globals.

If you don't explicitly align your shared data structures on cache line boundaries, there's a good chance that you'll end up generating twice as much cache coherency traffic as you want. Worse, if it depends on malloc() behavior, it might be different between runs; if it depends on global layout, it might be different between builds.

The opposite part of this problem, false sharing, happens when you have two things in a single cache line that have different sharing properties. If you have a structure that has one field that is infrequently updated, but frequently read from multiple threads, and another that is updated frequently, what happens?

If the structure is in a single cache line, every time the second field is updated it will invalidate the copies of the first field in all CPUs' caches. Each reading thread will then need to pull in a new copy of the cache line, just to get at a field that hasn't changed.

You can eliminate this by padding the structure to ensure that it spans more than one cache line, or by ensuring that you have only data with similar access patterns in a single structure.

Filling Up the Cache

One of the most difficult problems to diagnose on a multicore CPU happens when one thread is starving another for cache. On a conventional single-core machine, you can often see sharp discontinuities in a program's performance as the working set increases in size:

  • When the data no longer fits in L1 cache
  • When the data no longer fits in L2 cache
  • When the data no longer fits in main memory covered by the TLB
  • When the data no longer fits in main memory at all

Most multicore CPUs have a private L1 cache, but have shared L2 caches and often shared TLBs. And, of course, they have shared main memory. This means that if one thread uses a lot of L2 cache, it reduces the amount that's available to the threads running on other cores.

This is particularly problematic when the problem is not embarrassingly parallel, and the two threads depend on each other for partial results: It means that a thread that starves another for cache can end up waiting for the thread that it has just starved to complete before it can progress.

Unfortunately, this is one problem that you can't easily solve. The cache is hidden, as its name implies. The policy for which cores are allowed to store how much data is embedded in the CPU.

Priority Failures

Most developers writing multithreaded code are familiar with the priority inversion problems of constructs such as spinlocks. Many of these are made considerably worse by the policy embedded in modern CPUs. For example, in a CPU with hardware multithreading support, such as Intel's Hyperthreading, you have two threads using the same execution units and running at the same time. Unfortunately, the OS has no way of setting their priorities.

In a typical operating system, threads have two values associated with them under the broad umbrella of priority. One is a static value, saying that this thread is more or less important than that one and so should globally be allowed to consume more resources. The other is a dynamic one, indicating whether a thread has used more or less than its static priority would imply.

When the OS decides to schedule a thread, it does so based on how much CPU time it has consumed so far, but that is not always a meaningful number on a hyperthreaded or even multicore system. For example, a thread might have spent most of its time waiting for execution units to become free or it might have spent most of its time waiting for memory because another thread kept pushing its data out of cache.

So it's not always a good idea to rely on the operating system to correctly enforce priorities for threads within your application: Often it simply doesn't have the tools required to do so. If your application has very unbalanced memory accesses between threads, you're probably making the situation a lot worse.

It's only been about a decade since multicore computers went mainstream, and there are a lot of challenges in the OS and architecture space still left to solve. It typically takes about 5-7 years to get a completely new processor design to market, so we're only now starting to use processors whose design process started after multicore became common. Operating systems have a shorter development cycle, but completely redesigning the entire scheduler to take cache pressure and program phase into account is not a simple project.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020