use Once;
use Instant;
pub const CLOCKS_PER_NANO: u64 = 1;
pub const CLOCKS_PER_MICRO: u64 = 1_000 * CLOCKS_PER_NANO;
pub const CLOCKS_PER_MILLI: u64 = 1_000 * CLOCKS_PER_MICRO;
pub const CLOCKS_PER_SEC: u64 = 1_000 * CLOCKS_PER_MILLI;
static mut TIME: = None;
static INIT: Once = new;