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.

116 lines
4.3 KiB

  1. /*
  2. Copyright 2005-2014 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_range3d_H
  24. #define __TBB_blocked_range3d_H
  25. #include "tbb_stddef.h"
  26. #include "blocked_range.h"
  27. namespace tbb {
  28. //! A 3-dimensional range that models the Range concept.
  29. /** @ingroup algorithms */
  30. template<typename PageValue, typename RowValue=PageValue, typename ColValue=RowValue>
  31. class blocked_range3d {
  32. public:
  33. //! Type for size of an iteration range
  34. typedef blocked_range<PageValue> page_range_type;
  35. typedef blocked_range<RowValue> row_range_type;
  36. typedef blocked_range<ColValue> col_range_type;
  37. private:
  38. page_range_type my_pages;
  39. row_range_type my_rows;
  40. col_range_type my_cols;
  41. public:
  42. blocked_range3d( PageValue page_begin, PageValue page_end,
  43. RowValue row_begin, RowValue row_end,
  44. ColValue col_begin, ColValue col_end ) :
  45. my_pages(page_begin,page_end),
  46. my_rows(row_begin,row_end),
  47. my_cols(col_begin,col_end)
  48. {
  49. }
  50. blocked_range3d( PageValue page_begin, PageValue page_end, typename page_range_type::size_type page_grainsize,
  51. RowValue row_begin, RowValue row_end, typename row_range_type::size_type row_grainsize,
  52. ColValue col_begin, ColValue col_end, typename col_range_type::size_type col_grainsize ) :
  53. my_pages(page_begin,page_end,page_grainsize),
  54. my_rows(row_begin,row_end,row_grainsize),
  55. my_cols(col_begin,col_end,col_grainsize)
  56. {
  57. }
  58. //! True if range is empty
  59. bool empty() const {
  60. // Yes, it is a logical OR here, not AND.
  61. return my_pages.empty() || my_rows.empty() || my_cols.empty();
  62. }
  63. //! True if range is divisible into two pieces.
  64. bool is_divisible() const {
  65. return my_pages.is_divisible() || my_rows.is_divisible() || my_cols.is_divisible();
  66. }
  67. blocked_range3d( blocked_range3d& r, split ) :
  68. my_pages(r.my_pages),
  69. my_rows(r.my_rows),
  70. my_cols(r.my_cols)
  71. {
  72. if( my_pages.size()*double(my_rows.grainsize()) < my_rows.size()*double(my_pages.grainsize()) ) {
  73. if ( my_rows.size()*double(my_cols.grainsize()) < my_cols.size()*double(my_rows.grainsize()) ) {
  74. my_cols.my_begin = col_range_type::do_split(r.my_cols);
  75. } else {
  76. my_rows.my_begin = row_range_type::do_split(r.my_rows);
  77. }
  78. } else {
  79. if ( my_pages.size()*double(my_cols.grainsize()) < my_cols.size()*double(my_pages.grainsize()) ) {
  80. my_cols.my_begin = col_range_type::do_split(r.my_cols);
  81. } else {
  82. my_pages.my_begin = page_range_type::do_split(r.my_pages);
  83. }
  84. }
  85. }
  86. //! The pages of the iteration space
  87. const page_range_type& pages() const {return my_pages;}
  88. //! The rows of the iteration space
  89. const row_range_type& rows() const {return my_rows;}
  90. //! The columns of the iteration space
  91. const col_range_type& cols() const {return my_cols;}
  92. };
  93. } // namespace tbb
  94. #endif /* __TBB_blocked_range3d_H */