blob: 0131962811c5a164ba75ad368b2be1e4f850437a (
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 "pythonic/utils/functor.hpp"
#include <omp.h>
PYTHONIC_NS_BEGIN
namespace omp
{
long get_wtime()
{
return omp_get_wtime();
}
} // namespace omp
PYTHONIC_NS_END
#endif
|