You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.3 KiB

  1. /*
  2. Copyright 2005-2013 Intel Corporation. All Rights Reserved.
  3. This file is part of Threading Building Blocks.
  4. Threading Building Blocks is free software; you can redistribute it
  5. and/or modify it under the terms of the GNU General Public License
  6. version 2 as published by the Free Software Foundation.
  7. Threading Building Blocks is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  9. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Threading Building Blocks; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  14. As a special exception, you may use this file as part of a free software
  15. library without restriction. Specifically, if other files instantiate
  16. templates or use macros or inline functions from this file, or you compile
  17. this file and link it with other files to produce an executable, this
  18. file does not by itself cause the resulting executable to be covered by
  19. the GNU General Public License. This exception does not however
  20. invalidate any other reasons why the executable file might be covered by
  21. the GNU General Public License.
  22. */
  23. #ifndef __TBB_blocked_range2d_H
  24. #define __TBB_blocked_range2d_H
  25. #include "tbb_stddef.h"
  26. #include "blocked_range.h"
  27. namespace tbb {
  28. //! A 2-dimensional range that models the Range concept.
  29. /** @ingroup algorithms */
  30. template<typename RowValue, typename ColValue=RowValue>
  31. class blocked_range2d {
  32. public:
  33. //! Type for size of an iteration range
  34. typedef blocked_range<RowValue> row_range_type;
  35. typedef blocked_range<ColValue> col_range_type;
  36. private:
  37. row_range_type my_rows;
  38. col_range_type my_cols;
  39. public:
  40. blocked_range2d( RowValue row_begin, RowValue row_end, typename row_range_type::size_type row_grainsize,
  41. ColValue col_begin, ColValue col_end, typename col_range_type::size_type col_grainsize ) :
  42. my_rows(row_begin,row_end,row_grainsize),
  43. my_cols(col_begin,col_end,col_grainsize)
  44. {
  45. }
  46. blocked_range2d( RowValue row_begin, RowValue row_end,
  47. ColValue col_begin, ColValue col_end ) :
  48. my_rows(row_begin,row_end),
  49. my_cols(col_begin,col_end)
  50. {
  51. }
  52. //! True if range is empty
  53. bool empty() const {
  54. // Yes, it is a logical OR here, not AND.
  55. return my_rows.empty() || my_cols.empty();
  56. }
  57. //! True if range is divisible into two pieces.
  58. bool is_divisible() const {
  59. return my_rows.is_divisible() || my_cols.is_divisible();
  60. }
  61. blocked_range2d( blocked_range2d& r, split ) :
  62. my_rows(r.my_rows),
  63. my_cols(r.my_cols)
  64. {
  65. if( my_rows.size()*double(my_cols.grainsize()) < my_cols.size()*double(my_rows.grainsize()) ) {
  66. my_cols.my_begin = col_range_type::do_split(r.my_cols);
  67. } else {
  68. my_rows.my_begin = row_range_type::do_split(r.my_rows);
  69. }
  70. }
  71. //! The rows of the iteration space
  72. const row_range_type& rows() const {return my_rows;}
  73. //! The columns of the iteration space
  74. const col_range_type& cols() const {return my_cols;}
  75. };
  76. } // namespace tbb
  77. #endif /* __TBB_blocked_range2d_H */