-
-
Notifications
You must be signed in to change notification settings - Fork 56
feat: add timer-overhead correction, saturation warning, and resolution diagnostic #571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6a71cb2
5477644
49e619e
2b1e3fe
e9f9fe4
dc5d765
a24e811
869e64e
b93d693
556d884
411c1d7
eac7e03
2a5a701
b7e7e42
ce3c2c4
2f8232a
a3b9a37
f9a0a6a
1376205
c53307d
32e0ee5
718cff9
42fd0be
0a221a3
eadeb79
8600893
ec6c5ae
80e4ac5
48ba856
fdb108c
264c751
12226b7
35fce79
94c0d8c
244af5a
d5822c0
19358ab
eca70bf
f806350
15f30d9
344fa4b
26d8507
739fbfa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,9 +32,27 @@ export type { | |
| TaskResultStarted, | ||
| TaskResultTimestampProviderInfo, | ||
| TaskResultWithStatistics, | ||
| TimerSaturationReason, | ||
| TimestampFn, | ||
| TimestampFns, | ||
| TimestampProvider, | ||
| TimestampValue, | ||
| } from './types' | ||
| export { formatNumber, hrtimeNow, mToNs, performanceNow as now, nToMs } from './utils' | ||
| export type { | ||
| CalibrateTimerOverheadOptions, | ||
| TimerOverheadEstimatorKind, | ||
| } from './utils' | ||
| export { | ||
| calibrateTimerOverhead, | ||
| classifyTimerSaturation, | ||
| detectTimerSaturation, | ||
| estimateResolution, | ||
|
Comment on lines
+47
to
+49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For TypeScript consumers performing the advertised custom analysis on their own data, these helpers require the branded Useful? React with 👍 / 👎. |
||
| formatNumber, | ||
| hrtimeNow, | ||
| hrtimeNowTimestampProvider, | ||
| medianAbsoluteDeviation, | ||
| mToNs, | ||
| performanceNow as now, | ||
| nToMs, | ||
| performanceNowTimestampProvider, | ||
| } from './utils' | ||
|
jerome-benoit marked this conversation as resolved.
|
||
Uh oh!
There was an error while loading. Please reload this page.