This file is indexed.

/usr/include/getfem/getfem_omp.h is in libgetfem++-dev 4.2.1~beta1~svn4482~dfsg-2build1.

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
/* -*- c++ -*- (enables emacs c++ mode) */
/*===========================================================================

Copyright (C) 2000-2012 Yves Renard

This file is a part of GETFEM++

Getfem++  is  free software;  you  can  redistribute  it  and/or modify it
under  the  terms  of the  GNU  Lesser General Public License as published
by  the  Free Software Foundation;  either version 3 of the License,  or
(at your option) any later version along with the GCC Runtime Library
Exception either version 3.1 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 Lesser General Public
License and GCC Runtime Library Exception for more details.
You  should  have received a copy of the GNU Lesser General Public License
along  with  this program;  if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA.

As a special exception, you  may use  this file  as it is a part of a free
software  library  without  restriction.  Specifically,  if   other  files
instantiate  templates  or  use macros or inline functions from this file,
or  you compile this  file  and  link  it  with other files  to produce an
executable, this file  does  not  by itself cause the resulting executable
to be covered  by the GNU Lesser General Public License.  This   exception
does not  however  invalidate  any  other  reasons why the executable file
might be covered by the GNU Lesser General Public License.

===========================================================================*/
/**@file getfem_omp.h
@author  Andriy Andreykiv <andriy.andreykiv@gmail.com>
@date May 14th, 2013.
@brief Tools for multithreaded, OpenMP and Boost based parallelization.

This is the kernel of getfem.
*/
#pragma once
#ifndef GETFEM_OMP
#define GETFEM_OMP

#ifdef _OPENMP
#ifndef GETFEM_HAVE_BOOST
#error OpenMP compilation relies on Boost \
	threads. Please include Boost libraries with compiled \
	Boost.thread library and define GETFEM_HAVE_BOOST macro
#endif
#endif
#include <vector>
#ifdef _OPENMP
#include <omp.h>
#endif
#include <algorithm>
#ifdef GETFEM_HAVE_BOOST
#include <boost/thread.hpp>
#endif
#ifdef _WIN32
  #include <mbctype.h>
#endif
#include <locale.h>
#include <memory>
#include "dal_shared_ptr.h"
#include "gmm/gmm_std.h"
#include "bgeot_config.h"



namespace dal{
	/**Garbage collection. Deletes the stored objects that were 
		not deleted in the parallel section. */
	void collect_static_stored_objects_garbage();
}



namespace getfem
{
        using bgeot::size_type;
	class mesh;
	class mesh_region;

#ifdef _OPENMP	
	/**number of OpenMP threads*/
    inline size_t num_threads(){return omp_get_max_threads();}
	/**index of the current thread*/
	inline size_type this_thread() {return omp_get_thread_num();}
	/**is the program running in the parallel section*/
	inline bool me_is_multithreaded_now(){return static_cast<bool>(omp_in_parallel());}
#else
	inline size_type num_threads(){return size_type(1);}
	inline size_type this_thread() {return size_type(0);}
	inline bool me_is_multithreaded_now(){return false;}
#endif


	/**use this template class for any object you want to 
	distribute to open_MP threads. The creation of this
	object should happen in serial, while accessing the individual
	thread local instances will take place in parallel. If 
	one needs creation of thread local object, use the macro
	DEFINE_STATIC_THREAD_LOCAL
	*/
	template <typename T> class omp_distribute {
		std::vector<T> thread_values;
		friend struct all_values_proxy;
		struct all_values_proxy{
			omp_distribute& distro;
			all_values_proxy(omp_distribute& d): distro(d){}
			void operator=(const T& x){
			    for(typename std::vector<T>::iterator it=distro.thread_values.begin();
				  it!=distro.thread_values.end();it++) *it=x;
			}
		};
	public:
		omp_distribute() : thread_values(num_threads()) {}
		omp_distribute(const T& value) : 
			thread_values(num_threads(),value) {}
		operator T& (){return thread_values[this_thread()];}
		operator const T& () const {return thread_values[this_thread()];}
		T& thrd_cast(){return thread_values[this_thread()];}
		const T& thrd_cast() const {return thread_values[this_thread()];}
		T& operator()(size_type i) {
			return thread_values[i];
		}	
		const T& operator()(size_type i) const {
			return thread_values[i];
		}
		T& operator = (const T& x){ 
			return (thread_values[this_thread()]=x);
		}

		all_values_proxy all_threads(){return all_values_proxy(*this);}

		~omp_distribute(){}
	};

	template <typename T> class omp_distribute<std::vector<T> > {
		std::vector<std::vector<T> > thread_values;
		friend struct all_values_proxy;
		struct all_values_proxy{
			omp_distribute& distro;
			all_values_proxy(omp_distribute& d): distro(d){}
			void operator=(const T& x){
			    for(typename std::vector<T>::iterator it=distro.thread_values.begin();
				  it!=distro.thread_values.end();it++) *it=x;
			}
		};

	public:
		typedef std::vector<T> VEC;
		omp_distribute() : thread_values(num_threads()) {}
		omp_distribute(const T& value) : 
			thread_values(num_threads(),value){}
		operator VEC& (){return thread_values[this_thread()];}
		operator const VEC& () const 
		{return thread_values[this_thread()];}
		VEC& operator()(size_type i) {return thread_values[i];}	
		const VEC& operator()(size_type i) const {return thread_values[i];}
		VEC& thrd_cast(){return thread_values[this_thread()];}
		const VEC& thrd_cast() const 
		{return thread_values[this_thread()];}
		T& operator[](size_type i) 
		{return thread_values[this_thread()][i];}	
		const T& operator[](size_type i) const 
		{return thread_values[this_thread()][i];}
		T& operator = (const T& value) {
			return (thread_values[this_thread()]=value);
		}
		all_values_proxy all_threads(){return all_values_proxy(*this);}
		~omp_distribute(){}
	};

	/**specialization for bool, to circumvent the shortcommings
	of standards library specialization for std::vector<bool>*/
	template <> class omp_distribute<bool> {
		typedef int BOOL;
		std::vector<BOOL> thread_values;
		friend struct all_values_proxy;
		struct all_values_proxy{
			omp_distribute<bool>& distro;
			all_values_proxy(omp_distribute& d): distro(d){}
			void operator=(const bool& x);
		};


	public:

		omp_distribute() : thread_values(num_threads()) {}
		omp_distribute(const bool& value) : 
			thread_values(num_threads(),value) {}
		operator BOOL& (){return thread_values[this_thread()];}
		operator const BOOL& () const {return thread_values[this_thread()];}
		BOOL& thrd_cast(){return thread_values[this_thread()];}
		const BOOL& thrd_cast() const {return thread_values[this_thread()];}
		BOOL& operator()(size_type i) {
			return thread_values[i];
		}	
		const BOOL& operator()(size_type i) const {
			return thread_values[i];
		}
		BOOL& operator = (const BOOL& x){ 
			return (thread_values[this_thread()]=x);
		}
		all_values_proxy all_threads(){return all_values_proxy(*this);}
		~omp_distribute(){}
	private:

	};

#ifdef _OPENMP
	/** This is a class for guard objects using OpenMP
	*  It is adapted from the book
	*  "Pattern-Oriented Software Architecture". */
	class omp_guard {
		omp_lock_t *lock_;  // pointer to our lock
		bool owner_;   // is this object the owner of the lock?
		static  omp_lock_t single_lock;

		// Disallow copies or assignment
		omp_guard (const omp_guard &);
		void operator= (const omp_guard &);
	public:
		/** Acquire the lock and store a pointer to it */
		omp_guard (omp_lock_t &lock = single_lock);
		/** Set the lock explicitly */
		void acquire ();
		/** Release the lock explicitly (owner thread only!) */
		void release ();
		/** Destruct guard object */
		~omp_guard ();
	};
#else
	class omp_guard {};
#endif

	/* Use these macros only in function local context to achieve
	the effect of thread local storage for any type of objects
	and their initialization (it's more general and portable
	then using __declspec(thread))*/
#ifdef _OPENMP
#define	DEFINE_STATIC_THREAD_LOCAL_INITIALIZED(Type,Var,initial) \
	static boost::thread_specific_ptr<Type> ptr_##Var; \
	if(!ptr_##Var.get()) {ptr_##Var.reset(new Type(initial));} \
	Type& Var=*ptr_##Var;

#define	DEFINE_STATIC_THREAD_LOCAL(Type,Var) \
	static boost::thread_specific_ptr<Type> ptr_##Var; \
	if(!ptr_##Var.get()) {ptr_##Var.reset(new Type());} \
	Type& Var=*ptr_##Var;

#else
#define	DEFINE_STATIC_THREAD_LOCAL_INITIALIZED(Type,Var,initial) \
	static Type Var(initial);

#define	DEFINE_STATIC_THREAD_LOCAL(Type,Var) \
	static Type Var;

#endif

	class open_mp_is_running_properly{
		static omp_distribute<bool> answer;

	public:
		open_mp_is_running_properly();
		~open_mp_is_running_properly();
		static bool is_it();
	};

#if defined _WIN32 && !defined (__GNUC__)
	/**parallelization function for a for loop*/
	template<class LOOP_BODY> 
	inline void open_mp_for(int begin, int end, 
		const LOOP_BODY& loop_body){
			_configthreadlocale(_ENABLE_PER_THREAD_LOCALE); 
			gmm::standard_locale locale;
			open_mp_is_running_properly check;
#pragma omp parallel default(shared) 
			{ 
				_setmbcp(_MB_CP_ANSI);
#pragma omp for schedule(static)
				for(int i=begin;i<end;i++) loop_body(i);
			}
			_configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
			dal::collect_static_stored_objects_garbage();
	}
#else /*LINUX*/
	/**parallelization function for a for loop*/
	template<class LOOP_BODY> 
	inline void open_mp_for(
		int begin, int end, const LOOP_BODY& loop_body){
			gmm::standard_locale locale;
			open_mp_is_running_properly check;
#pragma omp parallel default(shared) 
			{ 
#pragma omp for schedule(static)
				for(int i=begin;i<end;i++) loop_body(i);
			}
			dal::collect_static_stored_objects_garbage();
	}
#endif
        

        


        
        

	/**parallelization macro of a for loop*/
#define OPEN_MP_FOR(begin,end,loop_counter,loop_body) \
	getfem::open_mp_for(begin,end,loop_body(loop_counter));

	/**used to partition a mesh region so that 
	each partition can be used on a different thread. Thread safe*/
	class region_partition {
		mesh* pparent_mesh;
		dal::shared_ptr<mesh_region> original_region;
		mutable std::vector<size_type> partitions;
	public:
		region_partition(mesh* mmesh=0,size_type id=-1);
		region_partition(const region_partition& rp);
		void operator=(const region_partition& rp);		
		size_type thread_local_partition() const;
	};


}

#endif //GETFEM_OMP