Skip to content
Snippets Groups Projects
Commit c07c6098 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

omp

parent b8cf8964
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,9 @@
#include "OpenMP.h"
#include "Tools.h"
#include <cstdlib>
#if defined(_OPENMP)
#include <omp.h>
#endif
namespace PLMD {
......@@ -38,6 +41,15 @@ unsigned OpenMP::getNumThreads() {
return numThreads;
}
unsigned OpenMP::getThreadNum() {
#if defined(_OPENMP)
return omp_get_thread_num();
#else
return 0;
#endif
}
}
......
......@@ -33,6 +33,9 @@ public:
/// Get number of threads that can be used by openMP
static unsigned getNumThreads();
/// Returns a unique thread identification number within the current team
static unsigned getThreadNum();
/// get cacheline size
static unsigned getCachelineSize();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment