VeloGraphX
High-performance dynamic graph analytics in C++20
Loading...
Searching...
No Matches
runtime_metrics.hpp
Go to the documentation of this file.
1#pragma once
2#include <cstddef>
3#include <cstdint>
4#include <string>
5namespace velographx {
6struct RuntimeMetrics { std::size_t vertices{0}; std::size_t edges{0}; std::size_t changed_edges{0}; std::size_t affected_vertices{0}; std::size_t frontier_iterations{0}; std::size_t threads{1}; std::uint64_t elapsed_us{0}; std::string kernel{"scalar"}; std::string mode{"full_recompute"}; };
7}