This file is indexed.

/usr/include/madness/world/group.h is in libmadness-dev 0.10.1~gite4aa500e-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
  This file is part of MADNESS.

  Copyright (C) 2013  Virginia Tech

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

  For more information please contact:

  Robert J. Harrison
  Oak Ridge National Laboratory
  One Bethel Valley Road
  P.O. Box 2008, MS-6367

  email: harrisonrj@ornl.gov
  tel:   865-241-3937
  fax:   865-572-0680
 */

#ifndef MADNESS_WORLD_GROUP_H__INCLUDED
#define MADNESS_WORLD_GROUP_H__INCLUDED

#include <type_traits>
#include <madness/world/distributed_id.h>
#include <madness/world/madness_exception.h>
#include <madness/world/world.h>
#include <madness/world/world_task_queue.h>

namespace madness {

    /// A collection of processes

    /// \c Group is a light weight object that can be used to specify a set of
    /// processes that will participate in Gop collective operations. The
    /// advantage of Group over MPI (or SafeMPI) groups is that it eliminates
    /// the need to construct new communicator and the associated barrier.
    /// \note This is \b NOT an MPI or SafeMPI group.
    class Group {
    private:

        class Impl {
        private:
            World& world_; ///< Parent world for this group
            DistributedID did_; ///< Group distributed id
            std::vector<ProcessID> group_to_world_map_; ///< List of nodes in the group
            ProcessID group_rank_; ///< The group rank of this process
            mutable AtomicInt local_count_; ///< Local use count
            mutable AtomicInt remote_count_; ///< Remote use count

            /// Array begin iterator accessor

            /// \tparam T The array type
            /// \tparam N The size of the array
            /// \param a A c-style array
            /// \return A pointer to the first element of \c a
            template <typename T, std::size_t N>
            static T* begin(T (&a)[N]) { return a; }

            /// Array end iterator accessor

            /// \tparam T The array type
            /// \tparam N The size of the array
            /// \param a A c-style array
            /// \return A pointer to one past the last element of \c a
            template <typename T, std::size_t N>
            static T* end(T (&a)[N]) { return (a + N); }

            /// Array size accessor

            /// \tparam T The array type
            /// \tparam N The size of the array
            /// \param a A c-style array
            /// \return The size of array \c a
            template <typename T, std::size_t N>
            static std::size_t size(T (&a)[N]) { return N; }

            /// Array const begin iterator accessor

            /// \tparam vectorT The array type
            /// \param v An array object
            /// \return The begin const_iterator of \c v
            template <typename vectorT>
            static typename vectorT::const_iterator begin(const vectorT &v) {
                return v.begin();
            }

            /// Array const end iterator accessor

            /// \tparam vectorT The array type
            /// \param v An array object
            /// \return The end cosnt_iterator of \c v
            template <typename vectorT>
            static typename vectorT::const_iterator end(const vectorT &v) {
                return v.end();
            }

            /// Array size accessor

            /// \tparam vectorT The array type
            /// \param v An array object
            /// \return The size of array \c v
            template <typename vectorT>
            static typename std::enable_if<!std::is_array<vectorT>::value, std::size_t>::type
            size(const vectorT &v) { return v.size(); }

            public:
            /// Constructor

            /// \tparam A An std compliant array (e.g. \c std::array or <tt>std::vector</tt>)
            /// \param world The world that is the basis for this group
            /// \param did The distributed id associated with this group
            /// \param group An array of Processes in world
            template <typename A>
            Impl(World& world, const A& group, const DistributedID& did) :
                world_(world), did_(did),
                group_to_world_map_(begin(group), end(group)),
                group_rank_(-1), local_count_(), remote_count_()
            {
                // Check that there is at least one process in group
                MADNESS_ASSERT(size(group) > 0ul);

                // Sort and remove duplicates from group
                std::sort(group_to_world_map_.begin(), group_to_world_map_.end());
                group_to_world_map_.erase(std::unique(group_to_world_map_.begin(),
                        group_to_world_map_.end()), group_to_world_map_.end());

                // Check that all processes in the group map are contained by world
                MADNESS_ASSERT(group_to_world_map_.front() >= 0);
                MADNESS_ASSERT(group_to_world_map_.back() < world_.size());

                // Get the group rank for this process
                group_rank_ = rank(world_.rank());
                MADNESS_ASSERT(group_rank_ != -1);

                // Initialize the use counter
                local_count_ = 0;
                remote_count_ = 0;
            }

            /// Parent world accessor

            /// \return A reference to the parent world of this group
            World& get_world() const { return world_; }

            /// Group id accessor

            /// \return A const reference to the group id
            const DistributedID& id() const { return did_; }

            /// Group rank accessor

            /// \return The rank of this process in the group
            ProcessID rank() const { return group_rank_; }

            /// Map world rank to group rank

            /// \param world_rank The world rank to be mapped
            /// \return The group rank of \c world_rank when it is a member of this
            /// group, otherwise \c -1.
            ProcessID rank(const ProcessID world_rank) const {
                ProcessID result = std::distance(group_to_world_map_.begin(),
                        std::find(group_to_world_map_.begin(), group_to_world_map_.end(),
                                world_rank));
                if(static_cast<std::size_t>(result) == group_to_world_map_.size())
                    result = -1;
                return result;
            }

            /// Group size accessor

            /// \return The number of processes in the group
            ProcessID size() const { return group_to_world_map_.size(); }

            /// Map group rank to world rank

            /// \return The rank of this process in the world
            ProcessID world_rank(const ProcessID group_rank) const {
                MADNESS_ASSERT(group_rank >= 0);
                MADNESS_ASSERT(group_rank < ProcessID(group_to_world_map_.size()));
                return group_to_world_map_[group_rank];
            }

            /// Compute the binary tree parent and children

            /// \param[in] group_root The head node of the binary tree
            /// \param[out] parent The parent node of the binary tree
            /// \param[out] child0 The left child node of the binary tree
            /// \param[out] child1 The right child node of the binary tree
            void make_tree(const ProcessID group_root, ProcessID& parent,
                    ProcessID& child0, ProcessID& child1) const
            {
                const ProcessID group_size = group_to_world_map_.size();

                // Check that root is in the range of the group
                MADNESS_ASSERT(group_root >= 0);
                MADNESS_ASSERT(group_root < group_size);

                // Renumber processes so root has me == 0
                const ProcessID me = (group_rank_ + group_size - group_root) % group_size;

                // Compute the group parent
                parent = (me == 0 ? -1 : group_to_world_map_[(((me - 1) >> 1) + group_root) % group_size]);

                // Compute children
                child0 = (me << 1) + 1 + group_root;
                child1 = child0 + 1;

                const ProcessID end = group_size + group_root;
                if(child0 < end)
                    child0 = group_to_world_map_[child0 % group_size];
                else
                    child0 = -1;
                if(child1 < end)
                    child1 = group_to_world_map_[child1 % group_size];
                else
                    child1 = -1;
            }

            /// Local usage update

            /// Increment the local usage count by one.
            void local_update() const { local_count_++; }

            /// Remote usage update

            /// \param n The value that will be added to the remote count
            /// Add \c n to the remote count. The remote count will be updated
            /// with the negative of the local count so the final value will be
            /// equal to zero when the group is ready for destruction. When the
            /// group is ready for destruction it will be removed from the group
            /// registry.
            void remote_update(const int n) const {
                const int count = (remote_count_ += n);
                if(count == 0)
                    Group::unregister_group(did_);
            }

            /// Local group deleter

            /// Updates the remote usage count with the negative of the local
            /// usage count by calling \c remote_update.
            static void deleter(Impl* pimpl) {
                // Note: Calling remote_update() breaks the no throw requirement
                // of deleters. Unfortunately, this cannot be avoided since
                // Group must be used concurrently in different threads, and all
                // cleanup methods requires some type of locking.
                pimpl->remote_update(-(pimpl->local_count_));
            }
        }; // struct Impl

        std::shared_ptr<Impl> pimpl_;


        /// Add this group to the registry

        /// Register a group so that it can be used in active messages and tasks
        /// spawned on remote nodes.
        /// \throw TiledArray::Exception When the group is empty
        /// \throw TiledArray::Exception When the group is already in the registry
        void register_group() const;

        /// Remove this group from the registry

        /// Groups are removed via a lazy sync operation, which will only remove the
        /// group from the registry once \c unregister_group() has been called on
        /// all processes in the group.
        static void unregister_group(const DistributedID& did);

        Group(Impl* pimpl) : pimpl_(pimpl) { }

    public:

        /// Default constructor

        /// Create an empty group
        Group() : pimpl_() { }

        /// Copy constructor

        /// \param other The group to be copied
        /// \note Copy is shallow.
        Group(const Group& other) : pimpl_(other.pimpl_) { }

        /// Create a new group

        /// \tparam A An array type
        /// \param world The parent world for this group
        /// \param group An array with a list of process to be included in the
        /// \param did The distributed id associated with this group
        /// \note All processes in the \c group list must be included in the
        /// parent world.
        template <typename A>
        Group(World& world, const A& group, const DistributedID& did) :
            pimpl_(new Impl(world, group, did), Impl::deleter)
        {
            register_group();
        }

        /// Create a new group

        /// \tparam A An array type
        /// \param world The parent world for this group
        /// \param group An array with a list of process to be included in the
        /// \param tag The tag associated with this group
        /// group.
        /// \note All processes in the \c group list must be included in the
        /// parent world.
        template <typename A>
        Group(World& world, const A& group, const std::size_t tag) :
            pimpl_(new Impl(world, group, DistributedID(uniqueidT(), tag)), Impl::deleter)
        {
            register_group();
        }

        /// Create a new group

        /// \tparam A An array type
        /// \param world The parent world for this group
        /// \param group An array with a list of process to be included in the
        /// \param uid The unique id (used by \c WorldObject ) associated with this group
        /// \param tag The tag associated with this group
        /// group.
        /// \note All processes in the \c group list must be included in the
        /// parent world.
        template <typename A>
        Group(World& world, const A& group, const uniqueidT& uid, const std::size_t tag) :
            pimpl_(new Impl(world, group, DistributedID(uid, tag)), Impl::deleter)
        {
            register_group();
        }

        /// Copy assignment operator

        /// \param other The group to be copied
        /// \note Copy is shallow.
        Group& operator=(const Group& other) {
            pimpl_ = other.pimpl_;
            return *this;
        }

        /// Get group from the registry

        /// This function is used to acquire the group in an active message handler.
        /// \param did The id associated with the group
        /// \return A future to the group
        static madness::Future<Group> get_group(const DistributedID& did);

        /// Update local usage count

        /// Calling this function indicates that this group will be used by
        /// a task function that was spawned by a remote process. For each call
        /// to this function, \c remote_update must be called exactly once.
        /// \note Users should not call this function. Normally,
        /// \c WorldGopInterface will call this function as needed. Users may
        /// call this function if a \c Group is used in user provided collective
        /// operations.
        void local_update() const {
            MADNESS_ASSERT(pimpl_);
            pimpl_->local_update();
        }

        /// Update remote usage count

        /// Calling this function indicates that this group has been used by
        /// a task function that was spawned by a remote process. For each call
        /// to this function, \c remote_update must be called exactly once.
        /// \note Users should not call this function. Normally,
        /// \c WorldGopInterface will call this function as needed. Users may
        /// call this function if a \c Group is used in user provided collective
        /// operations.
        void remote_update() const {
            MADNESS_ASSERT(pimpl_);
            pimpl_->remote_update(1);
        }

        /// Quary empty group

        /// \return \c true when this group is empty
        bool empty() const { return !pimpl_; }

        /// Group id accessor

        /// \return A const reference to the group id
        const DistributedID& id() const {
            MADNESS_ASSERT(pimpl_);
            return pimpl_->id();
        }

        /// Parent world accessor

        /// \return A reference to the parent world of this group
        World& get_world() const {
            MADNESS_ASSERT(pimpl_);
            return pimpl_->get_world();
        }

        /// Group rank accessor

        /// \return The rank of this process in the group
        ProcessID rank() const {
            MADNESS_ASSERT(pimpl_);
            return pimpl_->rank();
        }

        /// Map world rank to group rank

        /// \param world_rank The world rank to be mapped
        /// \return The rank of \c world_rank process in the group
        ProcessID rank(const ProcessID world_rank) const {
            MADNESS_ASSERT(pimpl_);
            return pimpl_->rank(world_rank);
        }

        /// Group size accessor

        /// \return The number of processes in the group
        ProcessID size() const {
            return (pimpl_ ? pimpl_->size() : 0);
        }

        /// Map group rank to world rank

        /// \param group_rank The group rank to be mapped to a world rank
        /// \return The parent world rank of group_rank.
        ProcessID world_rank(const ProcessID group_rank) const {
            MADNESS_ASSERT(pimpl_);
            return pimpl_->world_rank(group_rank);
        }

        /// Compute the binary tree parents and children

        /// \param[in] group_root The head node of the binary tree in the group
        /// \param[out] parent The parent node of the binary tree
        /// \param[out] child1 The left child node of the binary tree
        /// \param[out] child2 The right child node of the binary tree
        /// \note Output ranks are in the parent world.
        void make_tree(const ProcessID group_root, ProcessID& parent,
                ProcessID& child1, ProcessID& child2) const
        {
            MADNESS_ASSERT(pimpl_);
            pimpl_->make_tree(group_root, parent, child1, child2);
        }

        template <typename Archive>
        void serialize(const Archive&) {
            MADNESS_ASSERT(false); // not allowed
        }
    }; // class Group

} // namespace madness

#endif // MADNESS_WORLD_GROUP_H__INCLUDED