trace.profiler.output
Firefox Profiler integration
Equations
- Lean.Firefox.instInhabitedMilliseconds = { default := { ms := default } }
Equations
- Lean.Firefox.instCoeFloatMilliseconds = { coe := fun (s : Float) => { ms := s * 1000 } }
Equations
- Lean.Firefox.instOfScientificMilliseconds = { ofScientific := fun (m : Nat) (s : Bool) (e : Nat) => { ms := OfScientific.ofScientific m s e } }
Equations
- Lean.Firefox.instToJsonMilliseconds = { toJson := fun (x : Lean.Firefox.Milliseconds) => Lean.toJson x.ms }
Equations
- Lean.Firefox.instFromJsonMilliseconds = { fromJson? := fun (j : Lean.Json) => Lean.Firefox.Milliseconds.mk <$> Lean.fromJson? j }
Equations
- Lean.Firefox.instAddMilliseconds = { add := fun (x y : Lean.Firefox.Milliseconds) => { ms := x.ms + y.ms } }
Equations
- Lean.Firefox.instCoeFloatMicroseconds = { coe := fun (s : Float) => { μs := s * 1000000 } }
Equations
- Lean.Firefox.instOfScientificMicroseconds = { ofScientific := fun (m : Nat) (s : Bool) (e : Nat) => { μs := OfScientific.ofScientific m s e } }
Equations
- Lean.Firefox.instToJsonMicroseconds = { toJson := fun (x : Lean.Firefox.Microseconds) => Lean.toJson x.μs }
Equations
- Lean.Firefox.instFromJsonMicroseconds = { fromJson? := fun (j : Lean.Json) => Lean.Firefox.Microseconds.mk <$> Lean.fromJson? j }
Equations
- Lean.Firefox.instFromJsonCategory = { fromJson? := Lean.Firefox.fromJsonCategory✝ }
Equations
- Lean.Firefox.instToJsonCategory = { toJson := Lean.Firefox.toJsonCategory✝ }
Equations
- Lean.Firefox.instFromJsonSampleUnits = { fromJson? := Lean.Firefox.fromJsonSampleUnits✝ }
Equations
- interval : Milliseconds
- startTime : Milliseconds
- processType : Nat
- product : String
- preprocessedProfileVersion : Nat
- sampleUnits : SampleUnits
Equations
- Lean.Firefox.instFromJsonProfileMeta = { fromJson? := Lean.Firefox.fromJsonProfileMeta✝ }
Equations
- length : Nat
Equations
- Lean.Firefox.instFromJsonStackTable = { fromJson? := Lean.Firefox.fromJsonStackTable✝ }
Equations
- Lean.Firefox.instToJsonStackTable = { toJson := Lean.Firefox.toJsonStackTable✝ }
- time : Array Milliseconds
- weight : Array Milliseconds
- weightType : String
- threadCPUDelta : Array Microseconds
- length : Nat
Equations
- Lean.Firefox.instFromJsonSamplesTable = { fromJson? := Lean.Firefox.fromJsonSamplesTable✝ }
Equations
- length : Nat
Equations
- Lean.Firefox.instFromJsonFuncTable = { fromJson? := Lean.Firefox.fromJsonFuncTable✝ }
Equations
- Lean.Firefox.instToJsonFuncTable = { toJson := Lean.Firefox.toJsonFuncTable✝ }
- length : Nat
Equations
- Lean.Firefox.instFromJsonFrameTable = { fromJson? := Lean.Firefox.fromJsonFrameTable✝ }
Equations
- Lean.Firefox.instToJsonFrameTable = { toJson := Lean.Firefox.toJsonFrameTable✝ }
Equations
- One or more equations did not get rendered due to their size.
Push an entry into a frame table.
Equations
- One or more equations did not get rendered due to their size.
- length : Nat
Equations
- Lean.Firefox.instFromJsonRawMarkerTable = { fromJson? := Lean.Firefox.fromJsonRawMarkerTable✝ }
Equations
- length : Nat
Equations
- Lean.Firefox.instFromJsonResourceTable = { fromJson? := Lean.Firefox.fromJsonResourceTable✝ }
Equations
- name : String
- processType : String
- isMainThread : Bool
- samples : SamplesTable
- markers : RawMarkerTable
- stackTable : StackTable
- frameTable : FrameTable
- resourceTable : ResourceTable
- funcTable : FuncTable
Equations
- Lean.Firefox.instFromJsonThread = { fromJson? := Lean.Firefox.fromJsonThread✝ }
Equations
- Lean.Firefox.instToJsonThread = { toJson := Lean.Firefox.toJsonThread✝ }
- meta : ProfileMeta
Equations
- Lean.Firefox.instFromJsonProfile = { fromJson? := Lean.Firefox.fromJsonProfile✝ }
Equations
- Lean.Firefox.instToJsonProfile = { toJson := Lean.Firefox.toJsonProfile✝ }
Thread with maps necessary for computing max sharing indices
- stringMap : Std.HashMap String Nat
- funcMap : Std.HashMap Nat Nat
- lastTime : Float
Last timestamp encountered: stop time of preceding sibling, or else start time of parent.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
def
Lean.Firefox.Profile.export
(name : String)
(startTime : Float)
(traceStates : Array TraceState)
(opts : Options)
:
Equations
- One or more equations did not get rendered due to their size.
- sampleMap : Std.HashMap Nat Nat
Max sharing map for samples
Merges given profiles such that samples with identical stacks are deduplicated by adding up their weights. Minimizes profile size while preserving per-stack timing information.
Equations
- One or more equations did not get rendered due to their size.