Module nimprof

Profiling support for Nim. This is an embedded profiler that requires --profiler:on. You only need to import this module to get a profiling report at program exit.Timer support for the realtime GC. Based on https://github.com/jckarter/clay/blob/master/compiler/src/hirestimer.cpp

Types

Nanos = int64
  Source

Procs

proc setSamplingFrequency(intervalInUs: int) {.raises: [], tags: [].}
set this to change the sampling frequency. Default value is 5ms. Set it to 0 to disable time based profiling; it uses an imprecise instruction count measure instead then.   Source
proc disableProfiling() {.raises: [], tags: [].}
  Source
proc enableProfiling() {.raises: [], tags: [].}
  Source