diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-09-17 17:26:45 -0400 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-09-19 17:03:25 +0200 |
commit | 0881af7718a3a8591afa062b9dd446ca7193e86f (patch) | |
tree | 334e8b3308b6a183f8e34a9a33480375c133e5e1 /sc | |
parent | 6f0b9dd26f061594f93e8ee6cc59415a6e8583f0 (diff) |
Oops this wasn't meant to be checked in.
Change-Id: I6eccbd38a44dfaec66718df210884067beaaf30e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/opencl/openclwrapper.cxx | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/sc/source/core/opencl/openclwrapper.cxx b/sc/source/core/opencl/openclwrapper.cxx index 7bcd39014a3f..2b2f8f75a672 100644 --- a/sc/source/core/opencl/openclwrapper.cxx +++ b/sc/source/core/opencl/openclwrapper.cxx @@ -43,49 +43,6 @@ #define DEVICE_NAME_LENGTH 1024 - -#include <stdio.h> -#include <string> -#include <sys/time.h> - -namespace { - -class stack_printer -{ -public: - explicit stack_printer(const char* msg) : - msMsg(msg) - { - fprintf(stdout, "%s: --begin\n", msMsg.c_str()); - mfStartTime = getTime(); - } - - ~stack_printer() - { - double fEndTime = getTime(); - fprintf(stdout, "%s: --end (duration: %g sec)\n", msMsg.c_str(), (fEndTime - mfStartTime)); - } - - void printTime(int line) const - { - double fEndTime = getTime(); - fprintf(stdout, "%s: --(%d) (duration: %g sec)\n", msMsg.c_str(), line, (fEndTime - mfStartTime)); - } - -private: - double getTime() const - { - timeval tv; - gettimeofday(&tv, NULL); - return tv.tv_sec + tv.tv_usec / 1000000.0; - } - - ::std::string msMsg; - double mfStartTime; -}; - -} - using namespace std; namespace sc { namespace opencl { @@ -2795,8 +2752,6 @@ void compileKernels(const OUString* pDeviceId) if (pDeviceId->isEmpty()) return; - stack_printer __stack_printer__("sc/opencl::compileKernels"); - fprintf(stdout, "opencl::compileKernels: device = '%s'\n", rtl::OUStringToOString(*pDeviceId, RTL_TEXTENCODING_UTF8).getStr()); if (!switchOpenclDevice(pDeviceId, false)) return; |