chore(parser/resultdetail): Clock Time -> Wall-clock Time
This commit is contained in:
parent
91a51cb84e
commit
38d00246cf
|
@ -37,7 +37,7 @@ func (*ResultDetail) Run(results []stage.ExecutorResult, confAny any) (
|
|||
float64(result.Memory)/(1024*1024))
|
||||
}
|
||||
if conf.ShowRunTime {
|
||||
comment += fmt.Sprintf("Clock Time: `%d ms`\n", result.RunTime/1e6)
|
||||
comment += fmt.Sprintf("Wall-clock Time: `%d ms`\n", result.RunTime/1e6)
|
||||
}
|
||||
if conf.ShowProcPeak {
|
||||
comment += fmt.Sprintf("ProcPeak: `%d`\n", result.ProcPeak)
|
||||
|
|
Loading…
Reference in New Issue
Block a user