mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-10 17:14:36 +00:00
21 lines
462 B
C++
21 lines
462 B
C++
#pragma once
|
|
|
|
// OpenCL SDK includes
|
|
#include "OpenCLUtilsCpp_Export.h"
|
|
|
|
// STL includes
|
|
#include <chrono>
|
|
|
|
// OpenCL includes
|
|
#include <CL/opencl.hpp>
|
|
|
|
namespace cl {
|
|
namespace util {
|
|
template <cl_int From, cl_int To, typename Dur = std::chrono::nanoseconds>
|
|
auto get_duration(cl::Event& ev)
|
|
{
|
|
return std::chrono::duration_cast<Dur>(std::chrono::nanoseconds{
|
|
ev.getProfilingInfo<To>() - ev.getProfilingInfo<From>() });
|
|
}
|
|
}
|
|
}
|