Shadowrun: Awakened 29 September 2011 - Build 871
OptimizedParallelSumTree.cpp
Go to the documentation of this file.
00001 /*
00002     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
00003 
00004     This file is part of Threading Building Blocks.
00005 
00006     Threading Building Blocks is free software; you can redistribute it
00007     and/or modify it under the terms of the GNU General Public License
00008     version 2 as published by the Free Software Foundation.
00009 
00010     Threading Building Blocks is distributed in the hope that it will be
00011     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
00012     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013     GNU General Public License for more details.
00014 
00015     You should have received a copy of the GNU General Public License
00016     along with Threading Building Blocks; if not, write to the Free Software
00017     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00018 
00019     As a special exception, you may use this file as part of a free software
00020     library without restriction.  Specifically, if other files instantiate
00021     templates or use macros or inline functions from this file, or you compile
00022     this file and link it with other files to produce an executable, this
00023     file does not by itself cause the resulting executable to be covered by
00024     the GNU General Public License.  This exception does not however
00025     invalidate any other reasons why the executable file might be covered by
00026     the GNU General Public License.
00027 */
00028 
00029 #include "common.h"
00030 #include "tbb/task.h"
00031 
00032 class OptimizedSumTask: public tbb::task {
00033     Value* const sum;
00034     TreeNode* root;
00035     bool is_continuation;
00036     Value x, y;
00037 public:
00038     OptimizedSumTask( TreeNode* root_, Value* sum_ ) : root(root_), sum(sum_), is_continuation(false) {
00039     }
00040     tbb::task* execute() {
00041         tbb::task* next = NULL;
00042         if( !is_continuation ) {
00043             if( root->node_count<1000 ) {
00044                 *sum = SerialSumTree(root);
00045             } else {
00046                 // Create tasks before spawning any of them.
00047                 tbb::task* a = NULL;
00048                 tbb::task* b = NULL;
00049                 if( root->left )
00050                     a = new( allocate_child() ) OptimizedSumTask(root->left,&x);
00051                 if( root->right )
00052                     b = new( allocate_child() ) OptimizedSumTask(root->right,&y);
00053                 recycle_as_continuation();
00054                 is_continuation = true;
00055                 set_ref_count( (a!=NULL)+(b!=NULL) );
00056                 if( a )
00057                     if( b ) spawn(*b);
00058                 else 
00059                     a = b;
00060                 next = a;
00061             }
00062         } else {
00063             *sum = root->value;
00064             if( root->left ) *sum += x;
00065             if( root->right ) *sum += y;
00066         } 
00067         return next;
00068     }
00069 };
00070 
00071 Value OptimizedParallelSumTree( TreeNode* root ) {
00072     Value sum;
00073     OptimizedSumTask& a = *new(tbb::task::allocate_root()) OptimizedSumTask(root,&sum);
00074     tbb::task::spawn_root_and_wait(a);
00075     return sum;
00076 }
00077 

Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.

GNU Lesser General Public License 3 Sourceforge.net