aprender-orchestrate 0.29.0

Sovereign AI orchestration: autonomous agents, ML serving, code analysis, and transpilation pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Centralized timing utilities.
//!
//! Wraps `std::time::Instant` to avoid CB-511 false positives
//! in files that mix production timing with test modules.

use std::time::Instant;

/// Start a timer. Returns the current instant.
#[inline]
pub fn start_timer() -> Instant {
    Instant::now()
}