blender/intern/cycles/util/util_time.cpp
Brecht Van Lommel 2d0a586c29 Cycles OpenCL: keep the opencl context and program around for quicker rendering
the second time, as for example Intel CPU startup time is 9 seconds.

* Adds an cache for contexts and programs for each platform and device pair,
  which also ensure now no two threads try to compile and write the binary cache
  file at the same time.
* Change clFinish to clFlush so we don't block until the result is done, instead
  it will block at the moment we copy back memory.
* Fix error in Cycles time_sleep implementation, does not affect any active code
  though.
* Adds some (disabled) debugging code in the task scheduler.

Patch #35559 by Doug Gale.
2013-05-31 16:19:03 +00:00

84 lines
1.6 KiB
C++

/*
* Copyright 2011, Blender Foundation.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include "util_time.h"
#ifdef _WIN32
#include <windows.h>
CCL_NAMESPACE_BEGIN
double time_dt()
{
__int64 frequency, counter;
QueryPerformanceFrequency((LARGE_INTEGER*)&frequency);
QueryPerformanceCounter((LARGE_INTEGER*)&counter);
return (double)counter/(double)frequency;
}
void time_sleep(double t)
{
Sleep((int)(t*1000));
}
CCL_NAMESPACE_END
#else
#include <sys/time.h>
#include <unistd.h>
CCL_NAMESPACE_BEGIN
double time_dt()
{
struct timeval now;
gettimeofday(&now, NULL);
return now.tv_sec + now.tv_usec*1e-6;
}
/* sleep t seconds */
void time_sleep(double t)
{
/* get whole seconds */
int s = (int)t;
if(s >= 1) {
sleep(s);
/* adjust parameter to remove whole seconds */
t -= s;
}
/* get microseconds */
int us = (int)(t * 1e6);
if (us > 0)
usleep(us);
}
CCL_NAMESPACE_END
#endif