Skip to Content
Intel Threading Building Blocks
book

Intel Threading Building Blocks

by James Reinders
July 2007
Intermediate to advanced
332 pages
10h 4m
English
O'Reilly Media, Inc.
Content preview from Intel Threading Building Blocks

Lazy copying

It can be useful to copy a data structure only when another thread steals a task. Example 9-12 uses the start_reduce::execute() method to implement parallel_reduce. The code forks the loop body object you provide only when the thread runs a stolen task. The forking permits the thief to run locally afterward until it is done and joins its result to the original thread’s result. Because the forks and joins incur some overhead, they are worth doing only when stealing occurs.

Example 9-12. parallel_reduce start_reduce::execute( ) method

template<typename Range, typename Body>
  task* start_reduce<Range,Body>::execute() {
    Body* body = my_body; 
    if( is_stolen_task() ) {
      finish_reduce<Body>* p = static_cast<finish_type*>(parent() );
      body = new(p->zombie_space.begin()) Body(*body,split());
      my_body = p->right_zombie = body;
    }
    task* next_task = NULL;
    if( !my_range.is_divisible() )
      (*my_body)( my_range );
    else {
      finish_reduce<Body>& c =
        *new(allocate_continuation()) finish_type(body);
      recycle_as_child_of(c);
      c.set_ref_count(2);
      start_reduce& b =
        *new(c.allocate_child()) start_reduce(Range(my_range,split()), body);
      c.spawn(b);
      next_task = this;
    }
    return next_task;
  }
}

The method task::is_stolen_task provides a way to detect stealing. It is called on a running task, typically by the task itself. Informally speaking, it returns true if the task is stolen. Formally, it returns true if the thread that owns the task is not the thread that owns the thread’s dependent. For the usual fork-join ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Intel® Xeon Phi™ Coprocessor Architecture and Tools: The Guide for Application Developers

Intel® Xeon Phi™ Coprocessor Architecture and Tools: The Guide for Application Developers

Rezaur Rahman
Autodesk 3ds Max 2016 Essentials

Autodesk 3ds Max 2016 Essentials

Dariush Derakhshani, Randi L. Derakhshani

Publisher Resources

ISBN: 9780596514808Errata Page