opm-simulators
threadedentityiterator.hh
Go to the documentation of this file.
1 // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 // vi: set et ts=4 sw=4 sts=4:
3 /*
4  This file is part of the Open Porous Media project (OPM).
5 
6  OPM is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 2 of the License, or
9  (at your option) any later version.
10 
11  OPM is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with OPM. If not, see <http://www.gnu.org/licenses/>.
18 
19  Consult the COPYING file in the top-level source directory of this
20  module for the precise wording of the license and the list of
21  copyright holders.
22 */
27 #ifndef EWOMS_THREADED_ENTITY_ITERATOR_HH
28 #define EWOMS_THREADED_ENTITY_ITERATOR_HH
29 
30 #include <mutex>
31 
32 namespace Opm {
33 
40 template <class GridView, int codim>
42 {
43  using Entity = typename GridView::template Codim<codim>::Entity;
44  using EntityIterator = typename GridView::template Codim<codim>::Iterator;
45 public:
46  explicit ThreadedEntityIterator(const GridView& gridView)
47  : sequentialIt_(gridView.template begin<codim>())
48  , sequentialEnd_(gridView.template end<codim>())
49  {}
50 
51  ThreadedEntityIterator(const ThreadedEntityIterator& other) = default;
52 
53  // begin iterating over the grid in parallel
54  EntityIterator beginParallel()
55  {
56  mutex_.lock();
57  auto tmp = sequentialIt_;
58  if (sequentialIt_ != sequentialEnd_) {
59  ++sequentialIt_; // make the next thread look at the next element
60  }
61  mutex_.unlock();
62 
63  return tmp;
64  }
65 
66  // returns true if the last element was reached
67  bool isFinished(const EntityIterator& it) const
68  { return it == sequentialEnd_; }
69 
70  // make sure that the loop over the grid is finished
71  void setFinished()
72  {
73  mutex_.lock();
74  sequentialIt_ = sequentialEnd_;
75  mutex_.unlock();
76  }
77 
78  // prefix increment: goes to the next element which is not yet worked on by any
79  // thread
80  EntityIterator increment()
81  {
82  mutex_.lock();
83  auto tmp = sequentialIt_;
84  if (sequentialIt_ != sequentialEnd_) {
85  ++sequentialIt_;
86  }
87  mutex_.unlock();
88 
89  return tmp;
90  }
91 
92 private:
93  EntityIterator sequentialIt_;
94  EntityIterator sequentialEnd_;
95 
96  std::mutex mutex_;
97 };
98 
99 } // namespace Opm
100 
101 #endif
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: blackoilbioeffectsmodules.hh:45
Provides an STL-iterator like interface to iterate over the enties of a GridView in OpenMP threaded a...
Definition: threadedentityiterator.hh:41