This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <chrono> | |
#include <vector> | |
#include <CL/sycl.hpp> | |
namespace sycl = cl::sycl; | |
using wall_clock_t = std::chrono::high_resolution_clock; | |
using time_point_t = std::chrono::time_point<wall_clock_t>; | |
template <typename T, class Period> | |
using time_interval_t = std::chrono::duration<T, Period>; |