blob: c45c7de5f6b69d6e20bffc8c16a9f2ed5256e692 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PYTHONIC_OMP_GET_WTIME_HPP
#define PYTHONIC_OMP_GET_WTIME_HPP
#include "pythonic/include/omp/get_wtime.hpp"
#include <omp.h>
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace omp
{
long get_wtime()
{
return omp_get_wtime();
}
}
PYTHONIC_NS_END
#endif
|