| 47 | const size_t kMaxHistorySize = 512; |
| 48 | |
| 49 | pybind11::dict toPython(const Profiler::Stats& stats) |
| 50 | { |
| 51 | pybind11::dict d; |
| 52 | d["min"] = stats.min; |
| 53 | d["max"] = stats.max; |
| 54 | d["mean"] = stats.mean; |
| 55 | d["std_dev"] = stats.stdDev; |
| 56 | return d; |
| 57 | } |
| 58 | |
| 59 | pybind11::dict toPython(const Profiler::Capture& capture) |
| 60 | { |
no test coverage detected