提交 f2b92d77 编写于 作者: D dongdaxiang

remove clock time in WIN32 mode

上级 91bd3534
...@@ -34,9 +34,13 @@ namespace paddle { ...@@ -34,9 +34,13 @@ namespace paddle {
namespace framework { namespace framework {
inline double current_realtime() { inline double current_realtime() {
#if !defined(_WIN32)
struct timespec tp; struct timespec tp;
clock_gettime(CLOCK_REALTIME, &tp); clock_gettime(CLOCK_REALTIME, &tp);
return tp.tv_sec + tp.tv_nsec * 1e-9; return tp.tv_sec + tp.tv_nsec * 1e-9;
#else
return 0.0;
#endif
} }
inline std::default_random_engine& local_random_engine() { inline std::default_random_engine& local_random_engine() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册