pub struct RuntimeMeas {}
impl RuntimeMeas {
#[inline(always)]
pub fn new() -> Self {
Self {}
}
#[inline(always)]
pub fn meas_begin(&self) -> i32 {
0
}
#[inline(always)]
pub fn meas_end(&self, _task_name: &'static str, _core: usize, _begin: i32) {}
#[inline(always)]
pub fn print_cpus(&self) {}
#[inline(always)]
pub fn print_task(&self, _task_name: &'static str, _time_base: usize, _core: usize) {}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
false
}
#[inline(always)]
pub fn enable(&self, _en: bool) {}
}