You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only time and warmup time can be recorded as a time series, while counters provide a single aggregate value.
It would be great to add support for recording custom time series data:
benchmark("..."){ state in
while true {varv=...
state.measure{// benchmark body, modifies v}
state.record(metric:"name", value:Double(v))}}
For example, it can be used to report accuracy in ML models, where not only the final result is important but also the shape of the curve towards the converged score.
The text was updated successfully, but these errors were encountered:
Currently only time and warmup time can be recorded as a time series, while counters provide a single aggregate value.
It would be great to add support for recording custom time series data:
For example, it can be used to report accuracy in ML models, where not only the final result is important but also the shape of the curve towards the converged score.
The text was updated successfully, but these errors were encountered: