30a31
> #include "python/pybind11/pybind.hh"
56a58,70
> void
> fixTimeResolution()
> {
> static bool fixed = false;
> if (fixed)
> return;
>
> auto ticks = pybind11::module::import("m5.ticks");
> auto fix_global_frequency = ticks.attr("fixGlobalFrequency");
> fix_global_frequency();
> fixed = true;
> }
>
64a79
> fixTimeResolution();