init commit

This commit is contained in:
2025-12-21 15:41:59 +01:00
commit c86af91a92
36 changed files with 2399 additions and 0 deletions

15
include/host_timer.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <chrono>
class HostTimer {
private:
using clock = std::chrono::high_resolution_clock;
clock::time_point start;
public:
HostTimer();
void reset();
double elapsed() const;
};