@[export lean_get_profiler_threshold]
Equations
- Lean.profiler.threshold.getSecs o = (Lean.Option.get o Lean.profiler.threshold).toFloat / 1000
Instances For
@[extern lean_profileit]
def
Lean.profileit
{α : Type}
(category : String)
(opts : Lean.Options)
(fn : Unit → α)
(decl : optParam Lake.Name Lean.Name.anonymous)
:
α
Print and accumulate run time of act
when option profiler
is set to true
.
Equations
- Lean.profileit category opts fn decl = fn ()
Instances For
unsafe def
Lean.profileitIOUnsafe
{ε : Type}
{α : Type}
(category : String)
(opts : Lean.Options)
(act : EIO ε α)
(decl : optParam Lake.Name Lean.Name.anonymous)
:
EIO ε α
Instances For
@[implemented_by Lean.profileitIOUnsafe]
def
Lean.profileitIO
{ε : Type}
{α : Type}
(category : String)
(opts : Lean.Options)
(act : EIO ε α)
(decl : optParam Lake.Name Lean.Name.anonymous)
:
EIO ε α
Equations
- Lean.profileitIO category opts act decl = act
Instances For
def
Lean.profileitM
{m : Type → Type}
(ε : Type)
[MonadFunctorT (EIO ε) m]
{α : Type}
(category : String)
(opts : Lean.Options)
(act : m α)
(decl : optParam Lake.Name Lean.Name.anonymous)
:
m α
Equations
- Lean.profileitM ε category opts act decl = monadMap (fun {β : Type} (act : EIO ε β) => Lean.profileitIO category opts act decl) act