![]() |
Shadowrun: Awakened 29 September 2011 - Build 871
|
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 #ifndef __TBB_parallel_for_each_H 00030 #define __TBB_parallel_for_each_H 00031 00032 #include "parallel_do.h" 00033 00034 namespace tbb { 00035 00037 namespace internal { 00038 // The class calls user function in operator() 00039 template <typename Function, typename Iterator> 00040 class parallel_for_each_body : internal::no_assign { 00041 const Function &my_func; 00042 public: 00043 parallel_for_each_body(const Function &_func) : my_func(_func) {} 00044 parallel_for_each_body(const parallel_for_each_body<Function, Iterator> &_caller) : my_func(_caller.my_func) {} 00045 00046 void operator() ( typename std::iterator_traits<Iterator>::value_type& value ) const { 00047 my_func(value); 00048 } 00049 }; 00050 } // namespace internal 00052 00056 00057 00058 template<typename InputIterator, typename Function> 00059 void parallel_for_each(InputIterator first, InputIterator last, const Function& f, task_group_context &context) { 00060 internal::parallel_for_each_body<Function, InputIterator> body(f); 00061 00062 tbb::parallel_do (first, last, body, context); 00063 } 00064 00066 template<typename InputIterator, typename Function> 00067 void parallel_for_each(InputIterator first, InputIterator last, const Function& f) { 00068 internal::parallel_for_each_body<Function, InputIterator> body(f); 00069 00070 tbb::parallel_do (first, last, body); 00071 } 00072 00074 00075 } // namespace 00076 00077 #endif /* __TBB_parallel_for_each_H */
Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.