1 |
|
2 |
/* $Id$ */ |
3 |
|
4 |
/******************************************************* |
5 |
* |
6 |
* Copyright 2003-2007 by ACceSS MNRF |
7 |
* Copyright 2007 by University of Queensland |
8 |
* |
9 |
* http://esscc.uq.edu.au |
10 |
* Primary Business: Queensland, Australia |
11 |
* Licensed under the Open Software License version 3.0 |
12 |
* http://www.opensource.org/licenses/osl-3.0.php |
13 |
* |
14 |
*******************************************************/ |
15 |
|
16 |
#include "Utils.h" |
17 |
#include "DataVector.h" |
18 |
|
19 |
#ifdef _OPENMP |
20 |
#include <omp.h> |
21 |
#endif |
22 |
|
23 |
namespace escript { |
24 |
|
25 |
int getSvnVersion() |
26 |
{ |
27 |
#ifdef SVN_VERSION |
28 |
return SVN_VERSION; |
29 |
#else |
30 |
return 0; |
31 |
#endif |
32 |
} |
33 |
|
34 |
void setNumberOfThreads(const int num_threads) |
35 |
{ |
36 |
|
37 |
#ifdef _OPENMP |
38 |
omp_set_num_threads(num_threads); |
39 |
#endif |
40 |
|
41 |
} |
42 |
|
43 |
int getNumberOfThreads() |
44 |
{ |
45 |
#ifdef _OPENMP |
46 |
return omp_get_max_threads(); |
47 |
#else |
48 |
return 1; |
49 |
#endif |
50 |
|
51 |
} |
52 |
|
53 |
} // end of namespace |