joule-profiler-core 1.0.1

Core library for joule-profiler, handling orchestration and energy measurements
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core aggregation module for `JouleProfiler`.
//!
//! Provides structures to aggregate metrics from various sources into a unified
//! format, organized by iterations, phases, and sensor-level results.
//!
//! Metrics are only instantiated *after* measurements finish to avoid runtime
//! overhead during collection.

mod metric;
pub(crate) mod phase;
pub(crate) mod sensor_result;

pub use metric::{Metric, MetricValue, Metrics};